I\'m writing an image editor in Android. So far it has a single activity. From this activity, I can load an image using a menu option that calls the Gallery activity, and in
The Uri you want is in the bundle. I have tried below code and can get the Uri of the image
such as content://media/external/images/media/1750
Intent intent = getIntent();
Bundle bundle = intent.getExtras();
Uri uri = (Uri)bundle.get(Intent.EXTRA_STREAM);
More information you can see the ACTION_SEND