2013-07-26 39 views
1

我想通过ImageView设置SurfaceView。我使用了下面的代码和布局。它在imageview上设置表面视图,但它将surfaceview设置为所有视图的顶部。如何设置ImageView的SurfaceView

是否有任何其他方式来设置ImageView的SurfaceView。

请帮帮我。

代码:

setEGLConfigChooser(8, 8, 8, 8, 16, 0); 
getHolder().setFormat(PixelFormat.TRANSLUCENT); 
setZOrderOnTop(true); 

布局

<FrameLayout 
    android:id="@+id/topFrameLayout" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" > 

    <!-- ImageView for the product --> 

    <ImageView 
     android:id="@+id/photoImageView" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" /> 

    <com.amplimesh.renderer.RendererView 
     android:id="@+id/renderer_view" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:background="@android:color/transparent" /> 

回答

0

确保你在你的渲染器添加

gl.glClearColor(0.0f, 0.0f, 0.0f, 0); 

,确保背景是透明的。

+0

我甚至把它设置成黑色。所以在GLSurfaceview后面的imageview是不可见的。请帮助我如何使imageview可见 – user2601652

+0

请帮助我为什么它仍然是surfaceview黑色.. – user2601652