I'm trying to send the result of an intent (which is the URI
of selected media on my app) back to the caller app as I choose my app from provided dialog to select a media. For most of the apps it works flawlessly but on some apps like Pixlr it says cannot open the image
. Is there anything else that I should add to the intent to send back the URI
that is requested from other apps correctly to cover some specific apps too?
This is my intent filter
:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
<data android:mimeType="video/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.GET_CONTENT" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.OPENABLE" />
<data android:mimeType="image/*" />
<data android:mimeType="video/*" />
</intent-filter>
, this is the way I'm trying to send result of picking media from my app:
Intent pickResultIntent = new Intent().setData(mediaContentUri);
setResult(Activity.RESULT_OK, pickResultIntent);
finish();
and this is the way I'm getting mediaUri:
mediaContentUri = ContentUris.withAppendedId(
MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
mediaId);
Answered in comment by CommonsWare