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
Original issue reported on code.google.com by
twig.ngu...@gmail.com
on 10 Feb 2012 at 3:22Attachments: