Camera on Android Example

Ralf picture Ralf · Dec 9, 2011 · Viewed 37.9k times · Source

I want to write an activity that:

  1. Shows the camera preview (viewfinder), and has a "capture" button.
  2. When the "capture" button is pressed, takes a picture and returns it to the calling activity (setResult() & finish()).

Are there any complete examples out there that works on every device? A link to a simple open source application that takes pictures would be the ideal answer.


My research so far:

This is a common scenario, and there are many questions and tutorials on this.

There are two main approaches:

  1. Use the android.provider.MediaStore.ACTION_IMAGE_CAPTURE event. See this question
  2. Use the Camera API directly. See this example or this question (with lots of references).

Approach 1 would have been perfect, but the issue is that the intent is implemented differently on each device. On some devices it works well. However, on some devices you can take a picture but it is never returned to your app. On some devices nothing happens when you launch the intent. Typically it also saves the picture to the SD card, and requires the SD card to be present. The user interaction is also different on every device.

With approach 2 the issues is stability. I tried some examples, but I've managed to stop the camera from working (until a restart) on some devices and completely freeze another device. On another device the capture worked, but the preview stayed black.

I would have used ZXing as an example application (I work with it a lot), but it only uses the preview (viewfinder), and doesn't take any pictures. I also found that on some devices, ZXing did not automatically adjust the white balance when the lighting conditions changed, while the native camera app did it properly (not sure if this can be fixed).


Update:

For a while I used the camera API directly. This gives more control (custom UI, etc), but I would not recommend it to anyone. I would work on 90% of devices, but every now and again a new device would be released, with a different problem.

Some of the problems I've encountered:

  • Handling autofocus
  • Handling flash
  • Supporting devices with a front camera, back camera or both
  • Each device has a different combination of screen resolution, preview resolutions (doesn't always match the screen resolution) and picture resolutions.

So in general, I'd not recommend going this route at all, unless there is no other way. After two years I dumped by custom code and switched back to the Intent-based approach. Since then I've had much less trouble. The issues I've had with the Intent-based approach in the past was probably just my own incompetence.

If you really need to go this route, I've heard it's much easier if you only support devices with Android 4.0+.

Answer

CommonsWare picture CommonsWare · Dec 9, 2011

With approach 2 the issues is stability. I tried some examples, but I've managed to stop the camera from working (until a restart) on some devices and completely freeze another device. On another device the capture worked, but the preview stayed black.

Either there is a bug in the examples or there is a compatibility issue with the devices.