我正在为camera
创建android
个应用程序。
我希望我的camera preview
活动如下图所示(例如)。我想将camera preview
活动分成四部分或多部分。
也就是说,点击camera
中的图片后,当我回到我的(相机图片预览活动)activity
时,我希望活动screen
分为四个部分或更多部分,每个部分都应该有preview image
。
原因是我想用图像render-script
效果对每个预览进行实验[但是这个解决方案超出了我的问题的范围,因为我知道如何使用渲染脚本],并且,每个部分应该有单独的rendering
。
任何人都可以帮我找到解决方案吗?
如果有任何示例或教程,这将是一个很好的帮助。
提前致谢。
答案 0 :(得分:3)
经过努力,我找到了解决方案。 Yeaahhhh !!!
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();
}
}
}
};
这将显示捕获的图像,如上所述。
谢谢:)