我使用Android,我想打开PDF文件:
有人能帮助我吗?
答案 0 :(得分:3)
假设设备上安装了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文件的路径。