|
Title |
Provides intent actions | Provides intent URIs | Uses action | Uses URI | Description |
|---|---|---|---|---|---|
| Blackmoon File Browser |
Blackmoon File Browser is a file manager similar to OI File Manager.
|
Pick a folder through a file manager.
android.intent.extra.TITLE could be used as well.
Sample usage:
Intent theIntent = new Intent(Intent.ACTION_PICK);
theIntent.setData(Uri.parse("folder://"+aFolder.getPath())); //default folder / jump directly to this folder
theIntent.putExtra(Intent.EXTRA_TITLE,"A Custom Title"); //optional
startActivityForResult(theIntent, 1);
The picked folder URI can be obtained in onActivityResult() through getData().
|
Title |
Provides intent actions | Provides intent URIs | Uses action | Uses URI | Description |
|---|---|---|---|---|---|
| Blackmoon File Browser |
Blackmoon File Browser is a file manager similar to OI File Manager.
|
|
Title |
Provides intent actions | Provides intent URIs | Uses action | Uses URI | Description |
|---|---|---|---|---|---|
| Blackmoon File Browser |
Blackmoon File Browser is a file manager similar to OI File Manager.
|