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() & finsih()).

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).

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

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. Certainly, compatibility issues are a possibility with the camera, but we should rule out the example bugs first.

This example has worked on every device I have tried it on. And, since it's from one of my books, if there are issues with the example, I have a vested interest in getting the example to work. :-) If you run into compatibility issues of the styles you cite, let me know the details, including the specific device (comment on this answer, or since this pertains to one of my books, post a StackOverflow question with details and include the commonsware tag).

link|improve this answer
I tried your example and I noticed one thing: When I open the preview, then send my device to sleep (the button on the right side of the Samsung Galaxy SII) and wake it up again, the Preview Screen is all black and taking pictures fails. I imagine it must've sth to do with the onPause/onResume implementation? – Zainodis Apr 15 at 11:20
@Zainodis: Make sure that you are on the latest version of the sample -- I updated it a month or so ago based on some feedback regarding this issue. – CommonsWare Apr 15 at 11:25
Ah thanks, I just implemented it 2 days ago but I'll recheck :) I'll let u know if I still run into this issue after updating to the latest version of your code. – Zainodis Apr 15 at 11:27
Ok I made sure now my code matches this one: github.com/commonsguy/cw-advandroid/blob/master/Camera/Picture/… however the issue at hand persists - any idea how to trouble-shoot this? I am running your sample on a Samsung Galaxy SII with Android Version 2.3.4. On an additional note: I am starting your camera example using startActvityForResult - though I am not sure this matter for the issue I am having with sleep. – Zainodis Apr 15 at 11:50
1  
@Zainodis: OK, I will see if I can get my hands on one of these. Meanwhile, I have opened an issue on this -- please use that issue for any more information you uncover. Thanks! – CommonsWare Apr 15 at 12:38
show 3 more comments
feedback

The example that CommonsWare gave works well. The example works when using it as-is, but here are the issues I ran into when modifying it for my use case:

  1. Never take a second picture before the first picture has completed, in other words PictureCallback.onPictureTaken() has been called. The CommonsWare example uses the inPreview flag for this purpose.
  2. Make sure that your SurfaceView is full-screen. If you want a smaller preview you might need to change the preview size selection logic, otherwise the preview might not fit into the SurfaceView on some devices. Some devices only support a full-screen preview size, so keeping it full-screen is the simplest solution.

To add more components to the preview screen, FrameLayout works well in my experience. I started by using a LinearLayout to add text above the preview, but that broke rule #2. When using a FrameLayout to add components on top of the preview, you don't have any issues with the preview resolution.

I also posted a minor issue relating to Camera.open() on GitHub.

link|improve this answer
Your point #2 is incorrect. I am using the size that is supplied by the SurfaceView itself, which should be valid for any size SurfaceView. There is no assumption that it is full-screen -- in fact, on Android 3.0+, it is not full-screen, as there is an action bar. – CommonsWare Dec 10 '11 at 12:41
The issue I had was that on one device, the only preview size is 320x240 (full-screen resolution). If the SurfaceView is smaller than that, the example will not display any preview. – Ralf Dec 10 '11 at 15:53
Out of curiosity, which device? There's no question that my code assumes that there is at least one valid preview resolution smaller than the SurfaceView size. – CommonsWare Dec 10 '11 at 15:56
It's the Samsung Galaxy Y Pro B5510 (good entry-level phone). On all the other phones I tested this wasn't an issue. I edited the answer to improve the wording of point #2. – Ralf Dec 10 '11 at 15:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.