Some image editor apps do not accept provided URI through intent

118 Views Asked by At

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);
1

There are 1 best solutions below

0
On

Answered in comment by CommonsWare

Intent pickResultIntent = new Intent().setData(mediaContentUri);
pickResultIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
setResult(Activity.RESULT_OK, pickResultIntent);
finish();