Android系统。在pdf viewer中更改文件名

时间:2016-05-13 08:13:20

标签: android file pdf android-intent rename

假设我有以下代码来显示.pdf文件:

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

如何更改pdf viewer中显示的标题,使其与文件名不同?也许我可以把一些额外的东西用于意图?

0 个答案:

没有答案