Hi,
I am trying to take a picture using the phone's built-in camera
utility. I am passing the intent filter
MediaStore.ACTION_IMAGE_CAPTURE, and the camera app starts up, but
once I take a picture and press ok, nothing happens. Nothing appears
in the DDMS either. Here is my code to launch the camera:

                                         Intent cam = new 
Intent(MediaStore.ACTION_IMAGE_CAPTURE);
                                         cam.putExtra(MediaStore.EXTRA_OUTPUT,
MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
                                         
NoteViewer.this.startActivityForResult(cam,
NoteViewer.this.TAKE_PICTURE);

Any ideas on what I am doing wrong here?
Vance

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to