Android where can I get image taken by native camera app
问题 I am using native camera app to capture image, And I am not using MediaStore.EXTRA_OUTPUT to specify the path of image. Then how can i get the image using the intent. Thanks. 回答1: To capture images using camera call this intent Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(cameraIntent, requestCode); and to handle the callback use onActivityResult function protected void onActivityResult(int requestCode, int resultCode, Intent data)