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