7

This is my Intent:

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("text/* , application/pdf, image/*");

But, when the file explorer shows up, the PDF files are grayed out i.e., un-choosable. Is there any workaround for this?

Faux Pas
  • 536
  • 1
  • 8
  • 20

2 Answers2

10

If you are using minimum Android version 19 then you can do this below way

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent .setType("*/*");
String[] mimeTypes = {"image/*", "application/pdf"};
intent .putExtra(Intent.EXTRA_MIME_TYPES, mimeTypes);
mohit
  • 1,063
  • 10
  • 16
2

Try

intent.setType("text/*|application/pdf|image/*");
F43nd1r
  • 7,690
  • 3
  • 24
  • 62