cameraview icon indicating copy to clipboard operation
cameraview copied to clipboard

Implemented with Fragment but when minimize the App, camera preview showing black screen.

Open amit016verma opened this issue 7 years ago • 3 comments

Thanku for this demo , its help me alot , but one problem I am facing with that , I have implemented this with the fragment , its working fine everything but when I minimize my app and again open , not showing camera preview and when I click on capture its take the photo easily thats every strange can you help me out from this,

Thanks in Advance .

amit016verma avatar Aug 25 '18 09:08 amit016verma

CameraView: // if (Build.VERSION.SDK_INT < 21) { mImpl = new Camera1(mCallbacks, preview); // } else if (Build.VERSION.SDK_INT < 23) { // mImpl = new Camera2(mCallbacks, preview, context); // } else { // mImpl = new Camera2Api23(mCallbacks, preview, context); // }

dbq4130 avatar Nov 02 '18 08:11 dbq4130

It happens in my device also. I am using motorola g5 plus. When i switch task and again come back to preview screen, it starts showing green solid color screen.

Solution suggested by @dbq4130 is not useful as here we are discarding camera2 api at all.

I think, it's same issue as this one: https://github.com/google/cameraview/issues/183

Bhumik avatar Feb 14 '19 06:02 Bhumik

Thank you. I forgot to paste that code and found the reason. it is createPreviewImpl()

dbq4130 avatar Feb 18 '19 13:02 dbq4130