在Android应用程序中从url打开Pdf

时间:2013-06-22 14:54:29

标签: android pdf

我使用Android,我想打开PDF文件:

  1. 来自网址
  2. 来自内部存储。(把我的文件放到Android上读它?)
  3. 有人能帮助我吗?

1 个答案:

答案 0 :(得分:3)

假设设备上安装了PDF查看器应用程序

要在应用程序中打开PDF:

Uri path = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);

其中file是PDF文件的路径。