Android:尽管设置了MIME类型,但隐藏了PDF文件

Fau*_*Pas 4 pdf android android-intent mime-types android-intent-chooser

这是我的意图:

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("text/* , application/pdf, image/*");
Run Code Online (Sandbox Code Playgroud)

但是,当文件资源管理器显示时,PDF文件显示为灰色,即不可选择.这有什么解决方法吗?

moh*_*hit 7

如果您使用的是最低Android版本19,那么您可以在下面进行此操作

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent .setType("*/*");
String[] mimeTypes = {"image/*", "application/pdf"};
intent .putExtra(Intent.EXTRA_MIME_TYPES, mimeTypes);
Run Code Online (Sandbox Code Playgroud)