2

我正在尝试将图像保存到我的应用程序的私有文件系统,然后与外部应用程序共享该图像。我已经调查过了,似乎最好的方法就是保存到目录中,filesDir因为如果您使用该externalFiles目录,某些设备可能没有。到目前为止,这是我的代码(为简洁起见):

使用我的图像进行的活动

public Uri saveImageAndGetUri(Context context) {
    String fileName = "test.png";
    File imageDirectory = new File(getFilesDir(), "images");
    File savedImage = new File(imageDirectory, fileName);
    FileOutputStream stream;
    try {
        stream = new FileOutputStream(savedImage);
        getCurrentImage().compress(Bitmap.CompressFormat.PNG, 100, stream);
        stream.flush();
        stream.close();
    } catch(Exception e) {}
    return FileProvider.getUriForFile(context, "com.mydomain.mypackage.Dialogs.ShareOptions", savedImage);
}

ShareOptions.java

Uri contentUri = activity.saveImageAndGetUri(getContext()); //This calls the method above
intent = new Intent(Intent.ACTION_SEND);
getContext().grantUriPermission("com.twitter.android", contentUri, Intent.FLAG_GRANT_READ_URI_PERMISSION); //Grant read permission to Twitter. Don't think this part is working
getContext().grantUriPermission("com.twitter.android", contentUri, Intent.FLAG_GRANT_WRITE_URI_PERMISSION); //Grant write permission to Twitter. Don't think this part is working
intent.setPackage("com.twitter.android");
intent.setType("image/png");
intent.setFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.putExtra(Intent.EXTRA_STREAM, contentUri);

AndroidManifest.xml

<provider android:name="android.support.v4.content.FileProvider"
    android:authorities="com.mydomain.mypackage.Dialogs.ShareOptions"
    android:exported="false"
    android:grantUriPermissions="true">
    <meta-data android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/file_paths"/>
</provider>

xml/file_paths.xml

<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <files-path name="my_images" path="images/"/>
</paths>

一旦发送意图,Twitter 应用程序就会崩溃。我查看了 Twitter 中的错误日志,似乎它可能是权限问题。我认为即使使用我目前拥有的代码,Twitter 也无权访问 Uri。

任何和所有的帮助表示赞赏!

4

1 回答 1

1

它不起作用的原因是许多 3rd 方应用程序现在不支持 FileProvider。请参阅此问题:图像共享意图适用于 Gmail,但会导致 FB 和 twitter 崩溃

于 2014-06-28T17:09:17.920 回答