2
嘿,我是Android新手我有一個要求,選擇pdf
文件使用Intent
。我正在使用此代碼來設置MIME的類型。使用意圖在Android中挑選PDF文件
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("pdf/*")
但它不工作的方式我想,請給我提供任何建議或我可以做一些改變現有的代碼。
嘿,我是Android新手我有一個要求,選擇pdf
文件使用Intent
。我正在使用此代碼來設置MIME的類型。使用意圖在Android中挑選PDF文件
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);
如何通過意圖僅打開word文件? – TheGreat004
只需設置文件的MIME類型,例如.docx文件MIME類型將爲:application/vnd.openxmlformats-officedocument.wordprocessingml.document so intent.setType(「application/vnd.openxmlformats-officedocument.wordprocessingml.document」 ); – dex
Microsoft Office MIME類型在這裏給出http://stackoverflow.com/questions/4212861/what-is-a-correct-mime-type-for-docx-pptx-etc – dex