0
메신저 시도는 표면보기에서 카메라 미리보기를 만들고 그 위에 버튼을 추가하는 것입니다.카메라보기에서 오버레이 배경 제거
메신저 카메라 미리보기가 표시되지만 불행히도 Linearlayout
은 못생긴 흰색 배경을 가지고 있습니다.
어떻게 투명하게 할 수 있습니까?
나는 심지어 버튼의 경우<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<SurfaceView android:id="@+id/surfaceView1" android:layout_width="wrap_content" android:layout_height="wrap_content"></SurfaceView>
<LinearLayout android:id="@+id/linearLayout1" android:layout_width="wrap_content" android:layout_height="wrap_content">
<Button android:text="Button" android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
<Button android:text="Button" android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
</LinearLayout>
</FrameLayout>