如何设置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" />

确保添加

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

以确保背景是透明的。

最新更新