我写了一个简单的应用程序,其中列出了许多pdf文件,当用户点击其中一个时,他们会在pdf查看器中打开(在这里使用adobe)。
打开pdf文件的代码:
Uri path = Uri.fromFile(open[filePosition]);
try {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
finish();
} catch (ActivityNotFoundException e) {
Toast.makeText(getApplicationContext(), "PDF Reader application is not installed in your device", Toast.LENGTH_LONG).show();
}
现在,在pdf查看器中查看文件后,当用户单击它时,它会打开设备的主菜单。
如何让它回到我的应用程序,以便用户可以打开另一个文件?
答案 0 :(得分:4)
删除
finish();
从你的代码中你应该很好。
答案 1 :(得分:0)
删除finish(),然后它应该是:
Uri path = Uri.fromFile(open[filePosition]);
try {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
} catch (ActivityNotFoundException e) {
Toast.makeText(getApplicationContext(), "PDF Reader application is not installed in your device", Toast.LENGTH_LONG).show();
}