个人总结之自定义拍照
这几天有个需求是需要在拍照的时候,截图选定框内的照片,如下,截取绿色框内的照片 通常我们拍照 的话,都是直接调用系统的相机, 这样的话只能拍出整个屏幕的照片,不能达到我现在想要的效果,所以这时候我们需要重新来自定义个相机拍照 首先这是主界面的布局,也就是拍照的界面 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_parent" > <FrameLayout android:layout_width="wrap_content" android:layout_height="wrap_content" > <SurfaceView android:id="@+id/previewSV" android:layout_width="fill_parent" android:layout_height="fill_parent" /> <com.example.partialphoto.DrawViewFrame android:id="@+id/drawIV" android