当尝试在android应用程序中打开pdf文件时,ActivityNotFoundException

时间:2014-03-28 10:05:44

标签: android pdf android-intent report android-manifest

我是Android开发的新手。我正在尝试使用Android应用程序创建PDF文件并通过应用程序查看。当我创建pdf文件时没有错误,但是当我尝试打开pdf文件时它会引发异常。我还在清单文件中设置了读写权限。 这是我打开pdf文件的方法

void openPdf()
{
    Intent intent = new Intent(Intent.ACTION_VIEW);
    String path = Environment.getExternalStorageDirectory().getAbsolutePath() + "/PDF";

    File file = new File(path, "demo.pdf");
    intent.setDataAndType( Uri.fromFile( file ), "application/pdf" );
    startActivity(intent.setDataAndType( Uri.fromFile( file ), "application/pdf" ));
    intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
    Intent target = Intent.createChooser(intent, "Open File");
    try {
        startActivity(target);
    } catch (ActivityNotFoundException e) {
        Log.e("PDFCreator", "ActivityNotFoundException:" + e);
    } 
}

这是我得到的错误

 03-28 05:47:59.760: E/AndroidRuntime(5844): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=file:///storage/sdcard/PDF/demo.pdf typ=application/pdf }

这是我的清单文件

   <?xml version="1.0" encoding="utf-8"?>
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.isuru.mypdf"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="18" />

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.isuru.mypdf.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

为什么会出现此错误,请帮我解决问题。天气我必须改变核心或添加一些措辞。非常感谢你

1 个答案:

答案 0 :(得分:2)

请检查您的手机/仿真器是否安装了PDF打开应用程序(任何具有“android.intent.action.VIEW”的映射操作的应用程序)。如果没有,请安装adobe reader或任何pdf开放应用程序,然后重试。