0

我有一个应用程序,当我们单击按钮时会打开一个 pdf 文件。它在所有版本的 Android 上都有效,但在 Android 7.1.1 上崩溃,我不知道为什么:/

这些是我看过的相关问题

启动时出现ActivityNotFoundException

未找到处理 Intent 闪屏的 Activity

我在 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) 调用(本机方法)

谢谢你的帮助

4

2 回答 2

1

问题是您强制系统打开意图,而不检查是否有可以处理该意图的应用程序。可能您正试图在没有读取 PDF 文件的应用程序的设备上打开 PDF。尝试使用此代码:

PackageManager packageManager = getActivity().getPackageManager();
if (intent.resolveActivity(packageManager) != null) {
    startActivity(intent);
} else {
    Log.d(TAG, "No Intent available to handle action");
}
于 2017-04-26T08:43:39.533 回答
0

它适用于所有版本的 Android

不,那不是。它在您测试的那些 Android 设备上运行,并且这些设备碰巧安装了支持该content方案的 PDF 查看器。Android 本身没有 PDF 查看器,并且不要求所有设备都具有 PDF 查看器,并且所有用户(多用户设备)都可以访问 PDF 查看器。

但它在 Android 7.1.1 上崩溃,我不知道为什么

您正在测试的设备没有支持该content方案的 PDF 查看器。

于 2017-04-26T10:56:55.450 回答