capturing picture storing into sdcard [closed]
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question 开发者_开发百科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
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/
精彩评论