如何在android浏览器中查看pdf?

时间:2010-08-06 11:08:28

标签: android android-pdf-api androidpdfviewer

朋友,

任何人都指导我如何在Android浏览器中查看pdf文件?

或任何其他有用的方式?

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

尝试一下:

Intent intent = new Intent(Intent.ACTION_VIEW);
File file = new File("filename");
intent.setDataAndType(Uri.fromFile(file), "application/pdf");
startActivity(intent);