7

我有一些文件存储在我的应用程序的内部存储中,我想在外部应用程序中打开这些文件(例如,将图像发送到图库以供查看。)我已经设置了一个FileProvider这样做的。

来自AndroidManifest.xml

<application>
  ...
    <provider
        android:name="android.support.v4.content.FileProvider"
        android:authorities="${packageName}"
        android:exported="false"
        android:grantUriPermissions="true">

        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/files"/>

    </provider>
</application>

来自res/xml/files.xml

<paths>
    <files-path name="internal_logs" path="logs/"/>
    <files-path name="shared_files" path="shared/"/>
</paths>

Fragment我尝试打开文件的位置:

File sharedFolderPath = new File(getActivity().getFilesDir(), "shared");
File toOpen = new File(sharedFolderPath.getAbsolutePath(), sharedFile.getFileName());

if (toOpen.exists()) {
    Log.w("File exists: " + toOpen.getAbsolutePath());

    Uri fileUri = FileProvider.getUriForFile(getActivity(), BuildConfig.PACKAGE_NAME, toOpen);

    Log.w("Attempting to attach file " + fileUri.getEncodedPath() + " with mime type: " + URLConnection.guessContentTypeFromName(fileUri.toString()));

    Intent viewFile = new Intent(Intent.ACTION_VIEW);

    viewFile.setData(fileUri);
    viewFile.setType(URLConnection.guessContentTypeFromName(fileUri.toString()));
    viewFile.putExtra(Intent.EXTRA_STREAM, fileUri);
    viewFile.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    viewFile.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);

    try {
        startActivity(viewFile);
    } catch (android.content.ActivityNotFoundException ex) {
        Toast.makeText(getActivity(), "Please install an appropriate application to open this file.", Toast.LENGTH_SHORT).show();
    }
} else {
    log.w("File does not exist: " + toOpen.getAbsolutePath());
    Toast.makeText(getActivity(), "file not found.", Toast.LENGTH_SHORT).show();
}

从 logcat 输出(共享到 Gallery 应用程序):

PACKAGE_NAME W/TAG: File exists: /data/data/PACKAGE_NAME/files/shared/IMG_20140506_141221.jpg
PACKAGE_NAME W/TAG: Attempting to attach file /shared_files/IMG_20140506_141221.jpg with mime type: image/jpeg
778-791/? I/PackageManager﹕ Action: "android.intent.action.VIEW"
778-791/? I/PackageManager﹕ Category: "android.intent.category.DEFAULT"
778-791/? I/PackageManager﹕ Type: "image/jpeg"
778-791/? I/PackageManager﹕ Adding preferred activity ComponentInfo{com.google.android.gallery3d/com.android.gallery3d.app.GalleryActivity} for user 0 :
778-788/? I/ActivityManager﹕ START u0 {act=android.intent.action.VIEW typ=image/jpeg flg=0x3000001 cmp=com.google.android.gallery3d/com.android.gallery3d.app.GalleryActivity (has extras)} from pid 6209
778-1872/? I/ActivityManager﹕ Start proc com.google.android.gallery3d for activity com.google.android.gallery3d/com.android.gallery3d.app.GalleryActivity: pid=10602 uid=10039 gids={50039, 3003, 1028, 1015}
10602-10602/? V/StateManager﹕ startState class com.android.gallery3d.app.AlbumSetPage

发生的事情是找到了文件,生成了一个 URI,并且正确检测了 mimetype;我从 Android 获得了准确的处理程序列表,当我选择“画廊”时,画廊活动被启动,但它直接进入设备自己的画廊——没有错误消息,也没有打开的图像。这种行为似乎与其他图像查看器一致 - 例如 G+ 照片。

真正奇怪的是,如果我使用声明的 Intent ACTION_SEND 执行相同的代码,该文件会正确附加到 Gmail 中的电子邮件。(事实上​​,这就是我对应用程序的内部日志所做的事情。)所以我似乎不太可能错误地格式化内容 URI。我最好的猜测是我使用了错误的 Intent 操作?但我不知道有什么比 ACTION_VIEW 更好。

有任何想法吗?

4

2 回答 2

4

更改setType()setDataAndType(),并摆脱EXTRA_STREAMEXTRA_STREAM用于ACTION_SEND, not ACTION_VIEW,因此 Gallery 不知道您要求它查看的是什么。

于 2014-06-30T18:56:12.413 回答
0

这里有一个很好的例子:https ://developer.android.com/reference/android/support/v4/content/FileProvider.html

于 2015-07-04T20:42:27.593 回答