我编写了一个简单的应用程序,列出了许多 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 查看器中查看文件后,当用户单击返回时,它会打开设备的主菜单。
我怎样才能让它回到我的应用程序,以便用户可以打开另一个文件?