How to recover camera preview from sleep?

馋奶兔 提交于 2019-11-29 07:03:08

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

I was having the same issue and here's why:

The onPause method does not recycle the CameraPreview class I made (that implements SurfaceView Callbacks). Instead of trying to re instantiate that entire object itself, i merely updated the camera object reference i was passing it to be either

null

or

cameraPreview.setCamera(mCamera);

I called a getCameraInstance method to re initialize the camera, then passed it into the preivew object.

Now the problem is here:

private void initializeCameraView(){

    RelativeLayout preview = (RelativeLayout)rootView.findViewById(R.id.camera_preview);

    preview.addView(cameraPreview);
}

in onResume, i called this method to re initialize the cameraPreview object. However, it was freezing because I was trying to add another cameraPreview to the preview view. This was my fix, plain and simple. If it already exists, remove it, then put it right back in. Hope this helps!

private void initializeCameraView(){

    RelativeLayout preview = (RelativeLayout)rootView.findViewById(R.id.camera_preview);
    //removes the problem with the camera freezing onResume
    if(cameraPreview != null) {
        preview.removeView(cameraPreview);
    }
    preview.addView(cameraPreview);
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!