2

我需要让用户从设备内部/外部存储器中选择一个 pdf 文档,下面是我正在使用的代码。它适用于真实设备,但不适用于 Emulator我已经在模拟器上安装了 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());
 }

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

谢谢你的帮助。

4

2 回答 2

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();
                }
            } 
于 2012-04-14T08:47:12.890 回答
0

您需要在您的设备或模拟器上安装一些 pdf 查看器才能完成这项工作。

于 2012-04-14T08:44:51.413 回答