我正在使用相机的自定义布局。我应该能够创建圆形“捕获”,并且应该在预览模式下看到圆形捕获。我用 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>