我的应用正在将pdf文件下载到我的下载路径 然后我想在新的Intent
中打开我的PDF但只是我的读者是开放的 没有pdf文件
这是我打开阅读器的代码
Uri oUri = Uri.fromFile(proofFile);
Intent iIntent = new Intent(Intent.ACTION_VIEW);
iIntent.setDataAndType(oUri, "application/pdf");
iIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(iIntent);
答案 0 :(得分:0)
默认情况下,Android上没有安装PDF查看器,但有些HTC手机附带了能够阅读PDF的应用程序。因此,首先检查您是否有可以阅读PDF的应用,然后阅读this post有关如何打开它的信息。