我正在尝试允许用户将图像共享给设备上的其他应用程序。该图像位于我的应用程序内部存储区域的 files/ 子目录中。它适用于 Gmail,但 Facebook 和 Twitter 在响应我的意图时都会崩溃。
编辑:Google+ 也可以正常工作。
以下是相关的代码部分。
在 Application.xml 中
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="org.iforce2d.myapp.MyActivity"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/filepaths" />
</provider>
xml/文件路径.xml
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path name="shared" path="shared"/>
</paths>
这是我活动中的共享代码:
File imagePath = new File(getContext().getFilesDir(), "shared");
File newFile = new File(imagePath, "snapshot.jpg");
Uri contentUri = FileProvider.getUriForFile(getContext(),
"org.iforce2d.myapp.MyActivity", newFile);
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setType("image/jpeg");
shareIntent.putExtra(Intent.EXTRA_STREAM, contentUri);
shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
List<ResolveInfo> resInfos =
getPackageManager().queryIntentActivities(shareIntent,
PackageManager.MATCH_DEFAULT_ONLY);
for (ResolveInfo info : resInfos) {
getContext().grantUriPermission(info.activityInfo.packageName,
contentUri,
Intent.FLAG_GRANT_READ_URI_PERMISSION);
}
startActivity(Intent.createChooser(shareIntent, "Share image..."));
记录时的值contentUri
是:
content://org.iforce2d.myapp.MyActivity/shared/snapshot.jpg
我只使用 Gmail、Facebook 和 Twitter 作为接收应用程序进行了检查,但结果在各种操作系统版本(从 2.2.1 到 4.4.3)和 7 种设备中都非常一致,其中包括 Kindle。
Gmail 运行良好。图像缩略图出现在邮件合成中,并在发送时成功附加到邮件。
Twitter 和 Facebook 都崩溃了,如下所示。
这是来自 logcat 的堆栈跟踪,显示了这两个应用程序遇到的问题,它们似乎都是相同的问题(这取自 4.4.3,但回到 2.2 时,错误实际上是相同的。 1 尽管错误消息的措辞略有不同):
Caused by:
java.lang.IllegalStateException: Couldn't read row 0, col 0 from CursorWindow.
Make sure the Cursor is initialized correctly before accessing data from it.
at android.database.CursorWindow.nativeGetString(Native Method)
at android.database.CursorWindow.getString(CursorWindow.java:434)
at android.database.AbstractWindowedCursor.getString(AbstractWindowedCursor.java:51)
at android.database.CursorWrapper.getString(CursorWrapper.java:114)
at com.twitter.library.media.util.f.a(Twttr:95)
...
Caused by:
java.lang.IllegalStateException: Couldn't read row 0, col -1 from CursorWindow.
Make sure the Cursor is initialized correctly before accessing data from it.
at android.database.CursorWindow.nativeGetString(Native Method)
at android.database.CursorWindow.getString(CursorWindow.java:434)
at android.database.AbstractWindowedCursor.getString(AbstractWindowedCursor.java:51)
at android.database.CursorWrapper.getString(CursorWrapper.java:114)
at com.facebook.photos.base.media.MediaItemFactory.b(MediaItemFactory.java:233)
...
鉴于在 Facebook 和 Twitter 上分享图片是数百万人整天都在做的事情,我对它如此难以实施感到非常震惊:/
谁能发现我在这里做错了什么?