本文介绍了在Android中使用Intent选择PDF文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嘿,我是android新手,我要求使用Intent
选择pdf
文件.我正在使用此代码设置MIME类型.
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");
这篇关于在Android中使用Intent选择PDF文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!