I am developing an app, where an image taken from the native camera app. is to be shown to the user. The code I did is:
/* Intent */
Intent intent = new Inte
See Specify filename for picture to be taken for code to specify an EXTRA_OUTPUT parameter for the Intent which lets you specify a filename for the picture. Remember the filename when the activity result is called and use that if the intent.getData is NULL
And if you read the other comments in that bug report, you'll realize how many problems that picture taking on Android has.