我是Android开发的新手。 我需要在我的项目中实现文件选择器/ Open-File-Dialog 。但是我发现android没有为此提供任何内置支持。 那么什么是好的解决方案呢? 我应该使用任何库还是手动构建代码?
我已经了解了android-fileChooser& aFileChooser图书馆。还有其他简单的文件选择器吗?
先谢谢...
答案 0 :(得分:6)
使用以下代码启动文件选择器的意图
Intent fileIntent = new Intent(Intent.ACTION_GET_CONTENT);
fileIntent.setType("file/*"); // intent type to filter application based on your requirement
startActivityForResult(fileIntent, RESULT_CODE);
答案 1 :(得分:1)
更多链接供您参考File Explorer和File Explorer 1
答案 2 :(得分:0)
检查一下:FileExplorer with sorting我正在使用它,它是我找到的最完整的文件浏览器。