假设我有以下代码来显示.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中显示的标题,使其与文件名不同?也许我可以把一些额外的东西用于意图?