Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

picking PDF files using Intent in android

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.

like image 917
Vivek Pratap Singh Avatar asked Nov 22 '25 06:11

Vivek Pratap Singh


2 Answers

Do this intent.setType("application/pdf");

like image 106
dex Avatar answered Nov 23 '25 21:11

dex


Try Below Code:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setType("application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);
like image 26
Kishan Soni Avatar answered Nov 23 '25 22:11

Kishan Soni



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!