在Android中使用Intent选择PDF文件

嗨,我是Android新手我有一个要求选择使用Intent pdf文件。 我正在使用此代码来设置MIME的类型。

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("pdf/*")

但它不能按我想要的方式工作,请给我提供任何建议,或者我可以对现有代码进行一些更改。


做这个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/45455.html

上一篇: picking PDF files using Intent in android

下一篇: Send file to client and delete it