我有一个应用程序,当我们单击按钮时会打开一个 pdf 文件。它在所有版本的 Android 上都有效,但在 Android 7.1.1 上崩溃,我不知道为什么:/
这些是我看过的相关问题
启动时出现ActivityNotFoundException
我在 MainActivity 中打开文件的功能:
private void readPDF({
File f = new File(getFilesDir(), "toto.pdf");
if (!f.exists()) {
AssetManager assets=getResources().getAssets();
try {
copy(assets.open("toto.pdf"), f);
}
catch (IOException e) {
Log.e("FileProvider", "Exception copying from assets", e);
}
}
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri uri = getUriForFile(this, getApplicationContext().getPackageName() + ".fileprovider", f);
intent.setDataAndType(uri, "application/pdf");
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
revokeUriPermission(uri, Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(intent);
}
private void copy(InputStream in, File dst) throws IOException {
FileOutputStream out=new FileOutputStream(dst);
byte[] buf=new byte[1024];
int len;
while ((len=in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.close();
}
我的清单:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.fr">
<application
android:allowBackup="true"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.example.fr.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
<activity
android:name="com.example.fr.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
最后是错误代码:
04-26 08:15:16.991 21748-21748/com.example.fr E/AndroidRuntime: 致命异常: 主进程: com.example.fr, PID: 21748 android.content.ActivityNotFoundException: 没有找到处理 Intent { act =android.intent.action.VIEW dat=content://com.example.fr.fileprovider/assets/toto.pdf typ=application/pdf flg=0x1 } 在 android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1809 ) 在 android.app.Instrumentation.execStartActivity(Instrumentation.java:第 1523 章.java:75) 在 android.app.Activity.startActivityForResult(Activity.java:4183) 在 android.support.v4.app.FragmentActivity.startActivityForResult(FragmentActivity.java:871) 在 android.app.Activity.startActivity(Activity.java:4522) 在 android.app.Activity.startActivity(Activity.java:4490) 在 com.example.fr.MainActivity.readPDF(MainActivity.java:58) 在com.example.fr.MainActivity.access$000(MainActivity.java:21) 在 com.example.fr.MainActivity$1.onClick(MainActivity.java:34) 在 android.view.View。performClick(View.java:5637) at android.view.View$PerformClick.run(View.java:22429) at android.os.Handler.handleCallback(Handler.java:751) at android.os.Handler.dispatchMessage(Handler .java:95) 在 android.os.Looper.loop(Looper.java:154) 在 android.app.ActivityThread.main(ActivityThread.java:6119) 在 java.lang.reflect.Method。在 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886) 在 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776) 调用(本机方法)
谢谢你的帮助