标签: android android-pdf-api androidpdfviewer
朋友,
任何人都指导我如何在Android浏览器中查看pdf文件?
或任何其他有用的方式?
任何帮助将不胜感激。
答案 0 :(得分:0)
尝试一下:
Intent intent = new Intent(Intent.ACTION_VIEW); File file = new File("filename"); intent.setDataAndType(Uri.fromFile(file), "application/pdf"); startActivity(intent);