0

cameraのアプリケーションを作成していますandroid。下の図のようなアクティビティが必要ですcamera preview(たとえば)。camera preview私は自分の活動を 4 つ以上の部分に分割したいと考えています。

つまり、 の画像をクリックした後camera、(カメラ画像のプレビュー アクティビティ) に戻ったときにactivity、アクティビティscreenを 4 つ以上の部分に分割し、各部分preview imageにそれを含める必要があります。

その理由は、各プレビューを画像効果で実験したいからですrender-script[ただし、レンダリングスクリプトの使用方法を知っているので、その解決策は私の質問の範囲を超えています]、そして各部分には個別のrendering.

これに対する解決策を見つけるのを手伝ってくれる人はいますか?

カメラから写真を撮った後、1 つではなく 4 つの画像プレビュー

これに関する例やチュートリアルがあれば、非常に役立ちます。

前もって感謝します。

4

1 に答える 1

3

がんばった後、解決策を見つけました。ええああああ!!!

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();
                } 
            }
        }
    };

これにより、上記のようなキャプチャされた画像が表示されます。

ありがとうございました :)

于 2012-05-31T06:13:06.720 に答える