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:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setType("application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);
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