ExFilePicker
ExFilePicker copied to clipboard
Open source Android library. Implement choosing files and directories in your application.
Does it work with .txt file? I can't see my .txt file.
Just open recently file ,It's my code : val intent = Intent(Intent.ACTION_GET_CONTENT) intent.addCategory(Intent.CATEGORY_DEFAULT) if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { val contentUri = FileProvider.getUriForFile(this@TalentReportActivity, "com.gkzy.im.fileprovider", file) intent.setData(contentUri) intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION) intent.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION) intent.putExtra(MediaStore.EXTRA_OUTPUT, contentUri) startActivity(intent)...
Will this library support Android X in the future?
The state doesn't save on screen rotation. If phone rotated chooser will show start destination.
为什么九宫格列表切换和返回按钮失效
i dont want to allow user press back button, cause i just wanna show only folder which i point to it by setStartDirectory method