Select android 上的文件夹对话框?

Select folder dialog on android?

android SDK 上有一些 'select folder dialog' 吗? 我 google 它但我没有找到任何东西。

我的意思是我正在寻找会弹出的对话框并给我 select 文件夹路径的选项(比如 select 文件对话框...但是 return 参数将是文件夹的完整路径)

很难相信在这个了不起的 sdk 上没有办法 select 完整的文件夹路径。

任何帮助请..

谢谢。

public void performFileSearch() {
   Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT_TREE);
   startActivityForResult(intent, READ_REQUEST_CODE);
}

或者如果你使用三星 phone,你可以调用 Intent。

//Samsung Device
    Intent intent = new Intent("com.sec.android.app.myfiles.PICK_DATA");
    intent.putExtra("CONTENT_TYPE", "*/*");
    intent.addCategory(Intent.CATEGORY_DEFAULT);

providers/document-provider

这篇link会对你有所帮助

你可以使用这个库来做同样的事情: https://github.com/passy/Android-DirectoryChooser