我想知道如何打开PDF文件? 我们需要在清单文件中做出哪些更改。 我可以在浏览器中打开它吗?它需要什么权限?
答案 0 :(得分:0)
如果安装了处理application / pdf mime类型的应用程序,则可以打开它。您不能指定它只在浏览器中打开,除非浏览器是唯一处理它的应用程序。以下是打开pdf文件的代码段
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(OpenPdf.this,
"No Application Available to View PDF",
Toast.LENGTH_SHORT).show();
}