1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Changed order of pick directory intents

This commit is contained in:
cketti 2011-05-05 02:36:15 +02:00
parent 50b6d62169
commit 837b7da206

View File

@ -66,9 +66,9 @@ public class FileBrowserHelper {
// the scheme to use with it when setting the data for the intent.
String[][] intentDetails =
{ { "org.openintents.action.PICK_DIRECTORY", "file://" }, // OI File Manager (maybe others)
{ "com.androidworkz.action.PICK_DIRECTORY", "file://" }, // SystemExplorer
{ "com.estrongs.action.PICK_DIRECTORY", "file://" }, // ES File Explorer
{ Intent.ACTION_PICK, "folder://" } }; // Blackmoon File Browser (maybe others)
{ Intent.ACTION_PICK, "folder://" }, // Blackmoon File Browser (maybe others)
{ "com.androidworkz.action.PICK_DIRECTORY", "file://" }}; // SystemExplorer
boolean success = false;