从相机获取圆形图像

时间:2012-10-16 11:46:24

标签: android android-layout android-camera

我正在使用相机的自定义布局。我应该能够创建圆形“捕获”,我应该在预览模式下看到圆形捕获。我使用SurfaceView创建了布局,并将SurfaceView bacground颜色放置为“#CC000000”。当我试图通过相机拍摄图像时,它给了我一个黑色背景 - 很酷。 如何设置中心圆,这个圆圈不应该是“#CC000000”颜色,然后从相机获取图像?

enter image description here

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>

camera.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

    <solid android:color="#CC000000"/>

</shape>

0 个答案:

没有答案