aboutsummaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorjruesga <jorge@ruesga.com>2012-10-21 01:13:44 +0200
committerjruesga <jorge@ruesga.com>2012-10-21 01:13:44 +0200
commit27b7ffa87da1e82ae7f2d375ab31e86e1941e83e (patch)
treee5b94350f840515ae857d825c461000f7caefea3 /AndroidManifest.xml
parentc334085636273895dba8e03c197f119456d6bc18 (diff)
downloadandroid_packages_apps_CMFileManager-27b7ffa87da1e82ae7f2d375ab31e86e1941e83e.tar.gz
android_packages_apps_CMFileManager-27b7ffa87da1e82ae7f2d375ab31e86e1941e83e.tar.bz2
android_packages_apps_CMFileManager-27b7ffa87da1e82ae7f2d375ab31e86e1941e83e.zip
New activity "Picker Activity"
This activity allows third party application to browse and get the content using GET_CONTENT action and a mime/type. This activity used the NavigationView in jail room mode and it's only capable of pick a file (actions like open or others are not permitted) * CleanUp
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 2f6b296f..fd240397 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -93,6 +93,19 @@
</activity>
<activity
+ android:name=".activities.PickerActivity"
+ android:label="@string/picker"
+ android:uiOptions="none"
+ android:theme="@style/Explorer.Theme.Holo.Ligth.Overlay">
+ <intent-filter>
+ <action android:name="android.intent.action.GET_CONTENT" />
+ <category android:name="android.intent.category.OPENABLE" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <data android:mimeType="*/*" />
+ </intent-filter>
+ </activity>
+
+ <activity
android:name=".activities.preferences.SettingsPreferences"
android:label="@string/pref"
android:icon="@drawable/ic_launcher_settings"