假设设备上安装了 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文件的路径。