这是我的代码
Uri fileUri = Uri.fromFile(file);
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setData(fileUri);
startActivity(intent);
因此,它会打开一个我在我的应用程序中指定的文件。我测试过的前几个文件是 pdf 文件,它工作得很好。现在,我知道这完全是疯子,每次我选择与 pdf 不同的任何东西时 - 它显然试图使用 pdf 文件的程序来打开所选文件并给我这个消息
The document cannot be opened because it is not a valid PDF document
有趣的事情:) 有什么想法吗?