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?
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);
Try
intent.setType("text/*|application/pdf|image/*");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With