我有一个名为MyBringBackSurface的SurfaceView,构造函数是:
public MyBringBackSurface(Context context) {
// TODO Auto-generated constructor stub
super(context);
setBackgroundResource(R.drawable.background);
}
背景显示但如何使其透明,以便在其前面显示其他位图?
答案 0 :(得分:0)
使用Color.TRANSPARENT作为surfaceview的背景颜色。
如果要在曲面视图上显示位图,可以尝试类似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>