我想要我的camera preview活动,如下面的图片(例如)。我想将我的camera preview活动分成四个部分或多个部分。
也就是说,在我单击camera中的一张图片后,当我返回到我的(相机图像预览活动) activity时,我希望将activity screen划分为四个或更多部分,并且每个部分都应该具有该preview image。
原因是我想尝试每个预览图像的render-script效果,但解决方案超出了我的问题的范围,因为我知道如何使用渲染脚本,而且每个部分都应该有单独的rendering。
有人能帮我找到解决方案吗?

这将是一个很大的帮助,如果有任何例子或教程,这将是一个巨大的帮助。
提前谢谢。
发布于 2012-05-31 14:13:07
在努力尝试之后,我找到了解决方案。耶!
camera.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<FrameLayout
android:id="@+id/preview"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</FrameLayout>
<LinearLayout
android:id="@+id/imageViewLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="gone"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" >
<LinearLayout
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1" >
<ImageView
android:id="@+id/img1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/ic_launcher" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1" >
<ImageView
android:id="@+id/img2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/ic_launcher" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" >
<LinearLayout
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1" >
<ImageView
android:id="@+id/img3"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/ic_launcher" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1" >
<ImageView
android:id="@+id/img4"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/ic_launcher" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
<Button
android:id="@+id/clickButton"
style="@android:style/Animation.Translucent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="@string/click" />
</RelativeLayout>你的相机活动应该是这样的:我只发布我认为你应该关注的主要部分,其余的你可以实现。如果你被困在什么地方,请问我。首先,你应该从你的活动中调用:
final Button clickButton = (Button) findViewById(R.id.clickButton);
clickButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(final View view) {
camera.takePicture(null, null, mPicture);
}
});您的onPictureTaken()应该如下所示:
/**
* This will be called after taking picture from camera.
*/
final transient private PictureCallback mPicture = new PictureCallback() {
/**
* After taking picture, onPictureTaken() will be called where image
* will be saved.
*
*/
@Override
public void onPictureTaken(final byte[] data, final Camera camera) {
OutputStream outStream = null;
try {
outStream = new BufferedOutputStream(new FileOutputStream(
mGetFile));
outStream.write(data); // Write the data to corresponding place.
((FrameLayout) findViewById(R.id.preview))
.setVisibility(View.GONE);
((LinearLayout) findViewById(R.id.imageViewLayout))
.setVisibility(View.VISIBLE);
final Options options = new Options();
options.inScaled = true;
options.inPurgeable = true;
// to scale the image to 1/8
options.inSampleSize = 8;
Bitmap imageBitmap = BitmapFactory.decodeByteArray(data, 0,
data.length, options);
ImageView image1 = (ImageView) findViewById(R.id.img1);
ImageView image2 = (ImageView) findViewById(R.id.img2);
ImageView image3 = (ImageView) findViewById(R.id.img3);
ImageView image4 = (ImageView) findViewById(R.id.img4);
image1.setImageBitmap(imageBitmap);
image2.setImageBitmap(imageBitmap);
image3.setImageBitmap(imageBitmap);
image4.setImageBitmap(imageBitmap);
} catch (FileNotFoundException e) {
camera.release();
} catch (IOException e) {
camera.release();
} finally {
try {
outStream.close();
} catch (IOException e) {
camera.release();
}
}
}
};这将显示捕获的图像,就像您上面提到的那样。
谢谢您:)
https://stackoverflow.com/questions/10827689
复制相似问题