krnbatta / android-file-dialog

Automatically exported from code.google.com/p/android-file-dialog
0 stars 0 forks source link

allow "one click select" #11

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
This patch allows you to:
- select a file just by selecting it (no need to press "select file")
- hides layoutSelect if used with SelectionMode.MODE_OPEN

To set the option:
chooseFile = new Intent(this.getBaseContext(), FileDialog.class);
chooseFile.putExtra(FileDialog.OPTION_ONE_CLICK_SELECT, true);
// Optional but it hides the layoutSelect panel.
chooseFile.putExtra(FileDialog.SELECTION_MODE, SelectionMode.MODE_OPEN);

Original issue reported on code.google.com by twig.ngu...@gmail.com on 10 Feb 2012 at 3:22

Attachments: