Android Emulator - Intent.createChooser在为pdf类型文档打开时说“没有应用程序可以执行此操作”

时间:2012-04-14 08:43:31

标签: android pdf android-intent android-emulator

我需要让用户从设备内部/外部存储器中选择一个pdf文档,这是我正在使用的代码。 适用于真实设备但不适用于模拟器我在模拟器上安装了Pdf Viewer。

它不会抛出任何错误,但会显示消息框窗口,说明“没有应用程序可以执行此操作”

     Intent intent = new Intent();
     intent.setType("pdf/*");
     //intent.setType("application/pdf");
     intent.setAction(Intent.ACTION_GET_CONTENT);


     try {
         Intent pdfIntent = Intent.createChooser(intent, "Select pdf");
         startActivityForResult(pdfIntent, SELECT_PDF_DIALOG);
 } 
 catch (ActivityNotFoundException e) {
     CommonMethods.ShowMessageBox(this, "No Application Available to View PDF.");
 }
 catch(Exception e)
 {
     CommonMethods.ShowMessageBox(this, e.toString());
 }

我需要此代码才能在模拟器上工作,因为我无法检查/测试应用程序的完整功能。

感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

这是因为Android没有提供任何内置功能来阅读.pdf扩展名。因此,您必须安装任何第三方应用程序才能阅读.pdf(任何PDF查看器)以使其正常工作。

好的,然后试试这个,

将您的PDF文件保存在SDCard中并尝试使用这些内容执行它,

            File file = new File("/sdcard/Android.pdf");

            if (file.exists()) {
                Uri path = Uri.fromFile(file);
                Intent intent = new Intent(Intent.ACTION_VIEW);
                intent.setDataAndType(path, "application/pdf");
                intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

                try {
                    startActivity(intent);
                } 
                catch (ActivityNotFoundException e) {
                    Toast.makeText(YourActivity.this, 
                        "No Application Available to View PDF", 
                        Toast.LENGTH_SHORT).show();
                }
            } 

答案 1 :(得分:0)

您需要在设备或模拟器上安装一些pdf查看器才能使其正常工作。