我正在尝试在我的 Android 应用程序中使用意图的文件选择器。运行应用程序时,文件选择器只会在设备最后使用的文件夹中打开,而不是在预先指定的文件夹中。在每种情况下,如何使文件选择器在预先指定的文件夹中打开?这是我的代码:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
Uri uri = Uri.parse(Environment.getExternalStorageDirectory().getPath() + "prespecified/folder");
intent.setDataAndType(uri, "*/*");
startActivityForResult(Intent.createChooser(intent, "Choose file"), 123);