无法选择多个文件或选择目录中的所有文件

时间:2018-04-21 09:58:52

标签: java android user-interface filesystems

我正在准备一个音乐应用,我必须在我的列表中添加多个音乐文件。我想在文件夹中选择一个或多个或所有文件。

我正在尝试以下代码:

            Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
            intent.setType("music/*");
            intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
            startActivityForResult(intent, 10);

更新了问题:

enter image description here

我只能选择一个文件。我有esexplorer和android文件管理器。

0 个答案:

没有答案