カメラのカスタムレイアウトを使用しています。サークル「キャプチャ」を作成できるはずで、プレビュー モードでサークル キャプチャが表示されるはずです。SurfaceView でレイアウトを作成し、SurfaceView の背景色を「#CC000000」として配置しました。カメラ経由で画像を取得しようとすると、背景が黒くなります。これはクールです。中心円を設定するにはどうすればよいですか?この円は「#CC000000」の色の下にあるべきではなく、カメラから画像を取得できますか?
UPD : レイアウト コード
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<SurfaceView
android:id="@+id/cameraPreview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerInParent="true"
android:layout_margin="10dip"
android:background="@drawable/camera" />
<Button
android:id="@+id/buttonClick"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="Click" />
</RelativeLayout>
</FrameLayout>
</LinearLayout>
カメラ.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#CC000000"/>
</shape>