有什么办法吗?我遵循了本教程(http://marakana.com/forums/android/examples/39.html),效果很好.另外,我将FrameLayout(包含相机预览)放入带有ImageView的RelativeLayout中.
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<FrameLayout
android:id="@+id/preview"
android:layout_width="330dp"
android:layout_height="233dp"
android:layout_marginTop="22dp"
android:layout_alignBottom="@+id/imageView1"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" >
</FrameLayout>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image_on_preview" />
</RelativeLayout>
因此,现在启动应用程序,我就拥有了相机和一个imageview.如果将图片保存到SD卡中,则只能获取用相机拍摄的图片,但不会出现imageview(当然,为什么会出现).现在我的问题是如何保存呢?
为了更好地理解,我在使用应用程序时捕获了一个屏幕截图.
因此,我想将相机预览和imageview都保存在一张图片中.我不确定是否可以,但是如果我不必将图片保存到SD卡上,那将是最好的选择.稍后我将添加一个按钮“保存到SD卡”进行保存.
**更新
现在我想出了一种方法.我将图片保存在SD卡上,然后在创建文件时将其更改为另一个意图.它包含两个imageview,一个是“ image_on_preview”,另一个是我以前保存图片的来源.好吧,现在我只需要以某种方式变得棘手,并结合两个imageviews