Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working with custom layout for camera. I should be able create circle "capture" and I should see circle capture in a preview mode. I've created layout with SurfaceView and putted the SurfaceView bacground color as "#CC000000". It is gives me a black backround when I try to get an image via camera - it's cool. How can I set center circle and this circle should not be under "#CC000000" color and then get the image from camera ?

enter image description here

UPD: layout code

<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>
share|improve this question
Can you put the code you have? – Lo Juego Oct 16 '12 at 11:49
yes, sure. I've updated summary. – AlexMrKlim Oct 16 '12 at 11:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.