2

現在、私はAndroidでカメラを使用しています。

そして、私の問題があります:

私の通常のレイアウト http://img19.imageshack.us/img19/2402/screenshot2013050622260.jpg

TextureView.getBitmap() を ImageView に転送すると、左下のすべての画面アピアの反射がどれほど小さいか。そして、私はそれを必要としません!

編集 http://img834.imageshack.us/img834/4734/screenshot2013050622263.jpg

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <TextureView
        android:id="@+id/textureView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher" />

</LinearLayout>

MyCameraActivity.java

package lt.mk.mycam2;

import java.io.IOException;

import lt.mk.mycam2.SocketStringClient.SocketListener;
import android.app.Activity;
import android.graphics.SurfaceTexture;
import android.hardware.Camera;
import android.hardware.Camera.Size;
import android.os.Bundle;
import android.view.TextureView;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.LinearLayout.LayoutParams;

public class MyCameraActivity extends Activity implements TextureView.SurfaceTextureListener {
    private Camera mCamera;
    private TextureView mTextureView;
    private ImageView mImageView;

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        mImageView = (ImageView) findViewById(R.id.imageView1);
        mTextureView = (TextureView) findViewById(R.id.textureView1);
        mTextureView.setSurfaceTextureListener(this);
    }

    public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) {
        mCamera = Camera.open(1);
        try {
            mCamera.setPreviewTexture(surface);
            Size size = mCamera.getParameters().getPreviewSize();
            mTextureView.setLayoutParams(new LayoutParams(size.width, size.height));
            mCamera.startPreview();
        } catch (IOException ioe) {}
    }

    public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) {}

    public boolean onSurfaceTextureDestroyed(SurfaceTexture surface) {
        mCamera.stopPreview();
        mCamera.release();
        return true;
    }

    public void onSurfaceTextureUpdated(SurfaceTexture surface) {
        // if i comment following line everything looks OK, like in first image
        mImageView.setImageBitmap(mTextureView.getBitmap());
    }
}

では、なぜその反省が現れるのでしょうか。

編集 2

解決した

理由はわかりませんが、囲むとスムーズに動作します:

mImageView.setImageBitmap(mTextureView.getBitmap());

ハンドラーを使用:

new Handler().post(new Runnable() {
    public void run() {
        mImageView.setImageBitmap(mTextureView.getBitmap());
    }
});

どういうわけか Handler はこの問題を処理しました :)

4

1 に答える 1

0

ImageView に背景がない可能性がありますか?

次の場合はどうなりますか。

<ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@color/transparent"
        android:src="@drawable/ic_launcher" />

colors.xml に以下があることを確認してください。

<color name="transparent">#00000000</color>
于 2013-05-06T22:26:51.297 に答える