Skip to main content

method called after release() exception unable to resume with android camera



while developing a camera app i'v encountered an exception that only happend when I switch to other intent (onPause for my app) or go to preference in my app(same, onPause)







01-15 17:22:15.017: E/AndroidRuntime(14336): FATAL EXCEPTION: main

01-15 17:22:15.017: E/AndroidRuntime(14336): java.lang.RuntimeException: Method called after release()

01-15 17:22:15.017: E/AndroidRuntime(14336): at android.hardware.Camera.setPreviewDisplay(Native Method)

01-15 17:22:15.017: E/AndroidRuntime(14336): at android.hardware.Camera.setPreviewDisplay(Camera.java:357)

01-15 17:22:15.017: E/AndroidRuntime(14336): at com.sora.cbir.yuki.image.leaf.CameraPreview.surfaceCreated(CameraPreview.java:32)

01-15 17:22:15.017: E/AndroidRuntime(14336): at android.view.SurfaceView.updateWindow(SurfaceView.java:551)

01-15 17:22:15.017: E/AndroidRuntime(14336): at android.view.SurfaceView.onWindowVisibilityChanged(SurfaceView.java:213)

01-15 17:22:15.017: E/AndroidRuntime(14336): at android.view.View.dispatchWindowVisibilityChanged(View.java:4075)

01-15 17:22:15.017: E/AndroidRuntime(14336): at android.view.ViewGroup.dispatchWindowVisibilityChanged(ViewGroup.java:742)

01-15 17:22:15.017: E/AndroidRuntime(14336): at android.view.ViewGroup.dispatchWindowVisibilityChanged(ViewGroup.java:742)

01-15 17:22:15.017: E/AndroidRuntime(14336): at android.view.ViewGroup.dispatchWindowVisibilityChanged(ViewGroup.java:742)

01-15 17:22:15.017: E/AndroidRuntime(14336): at android.view.ViewGroup.dispatchWindowVisibilityChanged(ViewGroup.java:742)

01-15 17:22:15.017: E/AndroidRuntime(14336): at android.view.ViewRoot.performTraversals(ViewRoot.java:858)

01-15 17:22:15.017: E/AndroidRuntime(14336): at android.view.ViewRoot.handleMessage(ViewRoot.java:1995)

01-15 17:22:15.017: E/AndroidRuntime(14336): at android.os.Handler.dispatchMessage(Handler.java:99)

01-15 17:22:15.017: E/AndroidRuntime(14336): at android.os.Looper.loop(Looper.java:150)

01-15 17:22:15.017: E/AndroidRuntime(14336): at android.app.ActivityThread.main(ActivityThread.java:4389)

01-15 17:22:15.017: E/AndroidRuntime(14336): at java.lang.reflect.Method.invokeNative(Native Method)

01-15 17:22:15.017: E/AndroidRuntime(14336): at java.lang.reflect.Method.invoke(Method.java:507)

01-15 17:22:15.017: E/AndroidRuntime(14336): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:849)

01-15 17:22:15.017: E/AndroidRuntime(14336): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:607)

01-15 17:22:15.017: E/AndroidRuntime(14336): at dalvik.system.NativeStart.main(Native Method)







i did some research and found out i need to add







mCamera.setPreviewCallback(null);







as a workaround for android's camera stack





my onPause now looks like this:







@Override

protected void onPause() {

super.onPause();

try

{

// release the camera immediately on pause event

//releaseCamera();

mCamera.stopPreview();

mCamera.setPreviewCallback(null);

mCamera.release();

mCamera = null;



}

catch(Exception e)

{

e.printStackTrace();

}

}







and my onResume:







@Override

protected void onResume()

{

super.onResume();

try

{

mCamera.setPreviewCallback(null);

mCamera = getCameraInstance();

//mCamera.setPreviewCallback(null);

mPreview = new CameraPreview(Imageupload.this, mCamera);//set preview

preview.addView(mPreview);

} catch (Exception e){

Log.d(TAG, "Error starting camera preview: " + e.getMessage());

}

}

}







and finally my getcamerainstances class:







public Camera getCameraInstance(){

Camera camera = null;

try {

camera = Camera.open(); // attempt to get a Camera instance

}

catch (Exception e){

// Camera is not available (in use or does not exist)

}

Camera.Parameters parameters = camera.getParameters();

//mPreviewSize = getBestPreviewSize(parameters, wt, ht);

//mPictureSize = getBestPictureSize(parameters, wt, ht);

//Shift W & H => if camera rotates 90 deg



mPreviewSize = getOptimalPreviewSize(parameters, wt, ht); //original => wt,ht

mPictureSize = getOptimalPictureSize(parameters, wt, ht); //original => wt,ht



Log.d("CAMERA", "SCREEN RESOLUTION H: "+ht);

Log.d("CAMERA", "SCREEN RESOLUTION W: "+wt);



Log.d("CAMERA", "PREVIEW RESOLUTION H: "+mPreviewSize.height);

Log.d("CAMERA", "PREVIEW RESOLUTION W: "+mPreviewSize.width);



Log.d("CAMERA", "PICTURE RESOLUTION H: "+mPictureSize.height);

Log.d("CAMERA", "PICTURE RESOLUTION W: "+mPictureSize.width);

//set preview size based on device screen

parameters.setPreviewSize(mPreviewSize.width, mPreviewSize.height);

//set picture size based on device screen

parameters.setPictureSize(mPictureSize.width, mPictureSize.height);

//set output camera mode

parameters.setPictureFormat(PixelFormat.JPEG);

//set focous mode

parameters.setFocusMode(FOCUS_MODE_AUTO);

//set flash mode

parameters.setFlashMode("auto");

List<int[]> fps = parameters.getSupportedPreviewFpsRange();

//System.out.println("FPS size: " +fps.size());

//System.out.println("MAX FPS:"+(fps.get(fps.size()-1)[1])/1000);

//log min and max camera supported fps

Log.d("CAMERA", "CAMERA MAX FPS: "+(fps.get(fps.size()-1)[1])/1000);

Log.d("CAMERA", "CAMERA MIN FPS: "+(fps.get(fps.size()-1)[0])/1000);

if(camera_fps)

{

parameters.setPreviewFpsRange(fps.get(fps.size()-1)[1], fps.get(fps.size()-1)[1]);

}

//set camera parameters

camera.setParameters(parameters);



Toast.makeText(getApplicationContext(), "Your device are capable of previewing @" + fps.get(fps.size()-1)[1]/1000+"fps!",Toast.LENGTH_SHORT).show();

return camera; // returns null if camera is unavailable

}







any ideas on how to resolve the exception?


Comments

  1. The docs clearly say that camera.release() releases all camera resources. After this call camera reference can not be used any more.

    If you want to use camera again you have to acquire it via a open(int) method.

    It's all described in the camera docs.

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?

CCNA 3 Final Exam => latest version

1 . Which security protocol or measure would provide the greatest protection for a wireless LAN? WPA2 cloaking SSIDs shared WEP key MAC address filtering   2 . Refer to the exhibit. All trunk links are operational and all VLANs are allowed on all trunk links. An ARP request is sent by computer 5. Which device or devices will receive this message? only computer 4 computer 3 and RTR-A computer 4 and RTR-A computer 1, computer 2, computer 4, and RTR-A computer 1, computer 2, computer 3, computer 4, and RTR-A all of the computers and the router   3 . Refer to the exhibit. Hosts A and B, connected to hub HB1, attempt to transmit a frame at the same time but a collision occurs. Which hosts will receive the collision jamming signal? only hosts A and B only hosts A, B, and C only hosts A, B, C, and D only hosts A, B, C, and E   4 . Refer to the exhibit. Router RA receives a packet with a source address of 192.168.1.65 and a destination address of 192.168.1.161...