捕获图像和框架

时间:2014-11-05 11:09:14

标签: android android-camera surfaceview

我正在使用自定义相机,我已经完成了拍摄照片并将其保存在SD卡中的基本功能。 我想让相机进入下图中的黑色空间。 这是使用表面视图完成的。 但是,单击“图像”时,框架不会出现在单击的图像中。

有人可以建议如何使用框架点击图像,如下图所示。 enter image description here

这是我的相机预览屏幕布局。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

   <SurfaceView
    android:id="@+id/surfaceView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/frame" />



    <Button
        android:id="@+id/btn_click"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerInParent="true"
        android:text="@string/take_photo" />

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:visibility="gone" />

</RelativeLayout>

0 个答案:

没有答案