picking PDF files using Intent in android

2019-07-23 18:42发布

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.

2条回答
Luminary・发光体
2楼-- · 2019-07-23 19:05

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

查看更多
\"骚年 ilove
3楼-- · 2019-07-23 19:22

Try Below Code:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setType("application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);
查看更多
登录 后发表回答