Skip to content Skip to sidebar Skip to footer

Capturing Picture Storing Into Sdcard

Hi am new to android my requirement is to taking picture and storing it into an sdcard and retriving it as an object. Is there any code? plz help me

Solution 1:

You can capture picture using an ACTION_IMAGE_CAPTURE intent:

Intentintent=newIntent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE );

Have a look at the implementation of Camera Capture Example: http://labs.makemachine.net/2010/03/simple-android-photo-capture/

Post a Comment for "Capturing Picture Storing Into Sdcard"