0
我在我的「插入框架照片」應用程序中使用Android中的相機應用程序 http://developer.android.com/guide/topics/media/camera.html 我在FrameLayout中有一個ImageView插入一個圖像框架,內部部分是透明的。如何提取相機的一部分?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<FrameLayout
android:id="@+id/camera_container"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:gravity="top"
android:orientation="vertical" >
</FrameLayout>
<ImageView
android:id="@+id/grid"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/demo" />
</RelativeLayout>
</LinearLayout>
如何從相機中提取幀內圖像?