嘿我是android的新手我需要使用pdf
选择Intent
个文件。我使用此代码来设置MIME的类型。
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("pdf/*")
但它没有按我想要的方式工作,请提供任何建议或者我可以对现有代码进行一些更改。
答案 0 :(得分:2)
执行此操作intent.setType("application/pdf");
答案 1 :(得分:2)
尝试以下代码:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setType("application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);