Hey I am new in android I have a requirement to choose pdf
files using Intent
. I am using this code to set type of MIME.
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("pdf/*")
But it's not working the way I want, please provide me any suggestions or can I make some changes to the existing code.
Do this
intent.setType("application/pdf");
Try Below Code: