androidnoob123

Results 7 comments of androidnoob123

@sid96 can you please show how to take images in burst mode?

Hi guys, I had similar problems with this library. I used the one linked below instead and it worked fine for me in Android 0. See the closed issue over...

You can move the file to a different place in onImageCapture callback. See example here: https://github.com/sagan/android-hidden-camera/blob/master/app/src/main/java/me/sagan/magic/MagicService.java Tool.java has the code to move the file.

I think the camera.open is launching on main thread and thats why its blocking UI and leading to lags..try https://github.com/KAditi/Camera-Application. It gives no problem; it uses asynctask.

How can we take multiple image with the help of the service? tried adding in the onImageCapture callback but it gives java.lang.RuntimeException: Camera is being used after Camera.release() was called...

I just put ` session.setRepeatingRequest(captureBuilder.build(), null, null); ` before `session.capture(captureBuilder.build(), captureListener, null);` and it works. But I am not sure if that's the right place to make the setRepeatingRequest. ```...

Hi, this library here works, please refer to it: https://github.com/OmarAflak/Android-Camera2-Library/blob/master/ezcam/src/main/java/me/aflak/ezcam/EZCam.java. Read the readme for implementation on MainActivity. You can create a background service by using a dummy texture view (see...