FileListerDialog icon indicating copy to clipboard operation
FileListerDialog copied to clipboard

A simple file/ directory picker dialog for android

Results 11 FileListerDialog issues
Sort by recently updated
recently updated
newest added

It's a file/directory picker. I don't need to create any folder. Just select a file. Thanks!

It's a file/directory picker. I don't need to create any folder. Just select a file. Thanks!

Re Hello, Is It possible to change a feature : Now : when click on file : it open a new dialog to select, cancel, default dir and the name...

Hello, Very good project, thank's very much. i have un problem when I swipe up the list, when arrive the last file my application crash. it's not on select the...

I tried to use this library! (implementation 'yogesh.firzen:FilesLister:2.0.12') Everything seems to work but the file, folder text. See the screenshot. ![Screenshot_20190829-204959](https://user-images.githubusercontent.com/51293275/63953456-0096bb80-ca9f-11e9-98dd-675120b96de4.png)

java.lang.NoClassDefFoundError: yogesh.firzen.filelister.FilesListerView at yogesh.firzen.filelister.FileListerDialog.init(FileListerDialog.java:87) at yogesh.firzen.filelister.FileListerDialog.(FileListerDialog.java:56) at yogesh.firzen.filelister.FileListerDialog.createFileListerDialog(FileListerDialog.java:72)

Getting a crash on FileListerDialog open. ``` FileListerDialog fileListerDialog = FileListerDialog.createFileListerDialog(context); fileListerDialog.setOnFileSelectedListener(new OnFileSelectedListener() { @Override public void onFileSelected(File file, String path) { //your code here } }); fileListerDialog.setDefaultDir("/"); fileListerDialog.setFileFilter(FileListerDialog.FILE_FILTER.DIRECTORY_ONLY); fileListerDialog.show();...

It would be better to extend FileListerDialog from DialogFragment to prevent it from disappearing on screen rotations. Can you fix it?

enhancement

Useful libary, it would be nice if developer could create custom File Filters like txt, csv, xml or other.

enhancement

Hi, Just started playing with this code, When you use the directory chooser i don't seem to be able to show the contents of the folder prior to pressing the...