1

我有一个名为 MyBringBackSurface 的 SurfaceView,构造函数是:

public MyBringBackSurface(Context context) {
        // TODO Auto-generated constructor stub
        super(context);
        setBackgroundResource(R.drawable.background);
    }

背景出现了,但是如何使它透明,以便在它前面显示其他位图?

4

1 回答 1

0

使用 Color.TRANSPARENT 作为表面视图的背景颜色。

如果你想在表面视图上显示位图,你可以尝试下面的 xml

<RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1" android:gravity="center">
    <SurfaceView
        android:id="@+id/cameraSurface"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />

     <ImageView
               android:id="@+id/IV_MASK"
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:src="@drawable/mask"
                android:background="@android:color/transparent"
               />
     </RelativeLayout>
于 2013-07-05T20:50:47.570 回答