我创建了一个可以在其内部存储中导入文件的应用程序.
为了打开带有外部应用程序的文件(例如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.
我的代码出了什么问题?