Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to recover camera preview from sleep?

I have an application that shows camera preview and I would like the user to be able to put the phone to sleep and then wake it so that my application will recover correctly. The problem is that when returning from sleep the camera preview won't restart.

I have implemented the camera preview as is presented in the api demos, but it seems that the api demo example works only through sheer luck. In the example the screen orientation is forced to landscape, which means that the phone will go through configuration change every time the phone goes to sleep, since the lockscreen is in portrait mode. If the portrait mode is used in the camera preview application (like in mine), the bug surfaces.

I have gathered that the bug is related to recreation of the surfaceview. The surface should be destroyed always when going to onPause and then recreated after onResume, but this doesn't happen when going to sleep. It seems that I have to destroy the whole activity and then recreate it to get the camera preview to work again. I would like to be able to just recreate the surfaceview.

Is there a way to force the recreation of the surfaceview other than just recreating the whole activity?

like image 331
Henri Avatar asked Jun 29 '11 10:06

Henri


1 Answers

One solution maybe setting the surfaceview to invisible and visible again in onResume(), this makes the surfaceview destroy and recreates.

like image 50
Jason Kuang Avatar answered Oct 04 '22 15:10

Jason Kuang