Image not shown after .takePicture camera

On all the phones I tried, including the Galaxy Nexus with API 2.3.7 and 4.0, after the takePicture method is called changing the surface view of the image that was taken, "Browse Images."

I tested these tablet devices and the image overview did not appear: XOOM API 3.1 Galaxy Tab 10.1 API 3.1 Galaxy Tab 10.1 API 3.2

surfaceView = (SurfaceView)findViewById(R.id.surfaceView);

surfaceHolder = surfaceView.getHolder();
surfaceHolder.addCallback(this);
surfaceHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);

...

    public void takePicture() {
        cam.takePicture(this, null, this); //Shuttercallback, RawCallback, JpegCallback
    }

...

    public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {       
    // Stop preview before changing camera parameters
    if(isPreviewRunning) {
        this.cam.stopPreview();
    }

    Camera.Parameters p = this.cam.getParameters();
    LogUtils.info("CheckCapture", "Preview Size: " + String.valueOf(width) +"x" + String.valueOf(height));
    p.setPreviewSize(width, height);

    //Set picture size to a multiple of previewSize to maintain aspect ratio AND minimum capture width
    //LogUtils.info("CheckCapture", "Picture Size: " + String.valueOf(width*factor) +"x" + String.valueOf(height*factor));
    p.setPictureSize(width, height);
    p.setFocusMode(Camera.Parameters.FOCUS_MODE_AUTO);

    //Set picture format (we can check device capabilities, but all devices at API level 8 should support JPEG)
    p.setPictureFormat(PixelFormat.JPEG);

    //Set new camera parameters
    try {
        this.cam.setParameters(p);
    }catch (Exception e) {
        e.printStackTrace();
    }

    //Setup preview display on our surfaceViewHolder
    try {
        this.cam.setPreviewDisplay(surfaceHolder);
    } catch (IOException e) {
        e.printStackTrace();
    }

    //Start preview
    this.cam.startPreview();
    this.isPreviewRunning = true;
}
+5
source share
1 answer

on btn_click.onclickListener use the callback method as follows

_btn_click.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View arg0) {
            ShutterCallback shutterCallBack = new ShutterCallback() {
                @Override
                public void onShutter() {}
            };

            PictureCallback pictureCallBack = new PictureCallback() {
                @Override
                public void onPictureTaken(byte[] data, Camera camera) {}
            };

            PictureCallback pictureCallBackJPG = new PictureCallback() {
                @Override
                public void onPictureTaken(byte[] data, Camera camera) {

                    Bitmap capturedBitmap = BitmapFactory.decodeByteArray(data, 0, data.length);

                }
            };
            setFlashMode();
            camera.takePicture(shutterCallBack, pictureCallBack,
                    pictureCallBackJPG);
            showProgressDialog("Bitte warten", CameraCaptureActivity.this);
        }
    });

in this main line of code

Bitmap captureBitmap = BitmapFactory.decodeByteArray (data, 0, data.length);

use captureBitmap in imageview.setImageBitmap (captureBitmap); to display the image.

Happy coding

+3

All Articles