I\'m very new to Android development (think started yesterday) and in my application I\'m trying to listen for when the camera is used to take a picture.Also, I need to listen for this action all the
I am developing an app which use开发者_开发百科s the phone\'s default camera application to capture an image and then allow the user to perform some basic editing.
Hi I am using ACTION_IMAGE_CAPTURE for capturing image using Intent as follows: Intent 开发者_开发百科cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
I need to push an intent to default camera application to make it take a photo, save it 开发者_开发知识库and return an URI. Is there any way to do this?private static final int TAKE_PICTURE = 1;
We are trying to use the native camera app to let the user take a new picture. It works just fine if we leave out the EXTRA_OUTPUT extra and returns the small Bitmap image. However, if we putExtra(EXT