Android用外部应用打开文件,android – 为什么使用FileProvider我无法使用外部应用程序从INTERNAL STORAGE打开文件?...

我创建了一个可以在其内部存储中导入文件的应用程序.

为了打开带有外部应用程序的文件(例如PF查看器或照片),我尝试按照这些指南:

the official guide,topic1,topic2,topic3和

topic4但没有成功.

这是我的代码:

在我的清单中

android:name="android.support.v4.content.FileProvider"

android:authorities="com.myapp.chatcher"

android:exported="false"

android:grantUriPermissions="true">

android:name="android.support.FILE_PROVIDER_PATHS"

android:resource="@xml/file_paths" />

我的包价值:package =“com.myapp.catcher”

我的file_paths.xml

xmlns:android="http://schemas.android.com/apk/res/android">

我的代码

String fileName = path.substring(path.lastIndexOf("/") + 1);

String shelf = path.substring(path.lastIndexOf("PRIVATE") + 8,path.lastIndexOf("/"));

File filePath = new File(mContext.getFilesDir(),"PRIVATE".concat("/").concat(shelf).concat("/"));

File newFile = new File(filePath,fileName);

Uri contentUri = FileProvider.getUriForFile(mContext,"com.myapp.chatcher",newFile);

Intent myIntent = new Intent();

myIntent.setAction(Intent.ACTION_VIEW);

myIntent.setData(contentUri);

myIntent.setType(mimeType);

myIntent.setFlags(FLAG_GRANT_READ_URI_PERMISSION | FLAG_GRANT_WRITE_URI_PERMISSION);

mContext.startActivity(myIntent);

我创建了这样的层次结构:

PRIVATE -> shelf1 -> my files

-> shelf2 -> my files

-> shelfN -> my files

例如:data / user / 0 / com.myapp.chatcher / files / PRIVATE / testshelf / Screenshot_2017-01-04-09-45-13.png

打印newFile.getAbsolutePath()的结果是

/data/user/0/com.myapp.chatcher/files/PRIVATE/bogl/imagetest.jpg

此代码打开选择器,我可以在其中单击“照片”,然后打开“照片应用程序”,而不显示imagetest.jpg,但文件夹中包含所有图片.

如果我尝试使用pdf文件,它不会打开pdf,它会显示一个带有“no media”消息的toast.

我的代码出了什么问题?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值