【发布时间】:2017-04-13 10:20:56
【问题描述】:
我正在使用 Intent 打开文件管理器,我需要知道如何只显示 .doc、.docx 文件以供用户选择。如何将 setType 设置为意图? 以下函数用于从文件管理器中选择文件。
private void showFileChooser() {
Intent intent = new Intent();
//sets the select file to all types of files
intent.setType("application/*");
//allows to select data and return it
intent.setAction(Intent.ACTION_GET_CONTENT);
//starts new activity to select file and return data
startActivityForResult(Intent.createChooser(intent, "Choose File to Upload.."), PICK_FILE_REQUEST);
}`
【问题讨论】:
-
这就是你要找的东西stackoverflow.com/a/17949893/6689101
-
对 iOS 有什么想法吗?