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
A:
You can capture picture using an ACTION_IMAGE_CAPTURE intent:
Intent intent = new Intent(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/
PM - Paresh Mayani
2010-09-29 05:41:37