Android Camera

Is there anyway to capture a photo without suspending application/user prompt ? For example if user taps the screen button, photo is captured and we can show it later on without minimizing / suspending our application.

Without having to write own plugin.

Or is there any existing plugin out there that can do so?

If you want to use the Operating System’s camera controls, then it’s going to suspend since a new intent needs to run. It might be possible to access the camera directly with Java without using the OS controls, so you might be able to with Enterprise. If you plan to just call the system intent, it’s likely going to suspend on you.

Rob

If you want to use the Operating System’s camera controls, then it’s going to suspend since a new intent needs to run. It might be possible to access the camera directly with Java without using the OS controls, so you might be able to with Enterprise. If you plan to just call the system intent, it’s likely going to suspend on you.

Rob