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.


做这个intent.setType("application/pdf");


试试以下代码:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setType("application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);
链接地址: http://www.djcxy.com/p/45456.html

上一篇: Windows下载Amazon S3对象表示文件已损坏

下一篇: 在Android中使用Intent选择PDF文件