12

我目前可以通过使用以下代码打开 Lollipop 文件选择器来获取文件 URI:

            Intent intent = new Intent();
            intent.setAction(Intent.ACTION_OPEN_DOCUMENT_TREE);
            startActivity(intent);

文件选择器在内部存储的根目录或我打开的最后一个目录中打开。如何让文件选择器显示特定目录的内容?例如,我可能希望文件选择器在启动后显示下载文件夹的内容,如下图所示。

打开子目录

4

1 回答 1

-1

使用具有类似或https://developer.android.com/reference/android/os/Environment.html方法的Environment类。getExternalStorageDirectory()getDataDirectory()

如果图像存储在变量中,请从该路径中获取它们:

private static final String fileName = Environment
            .getExternalStorageDirectory().getAbsolutePath()
            + "/pathToFile.jpg";
于 2018-01-11T07:31:44.917 回答