summaryrefslogtreecommitdiffstats
path: root/packages/DocumentsUI/AndroidManifest.xml
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2013-08-07 16:22:02 -0700
committerJeff Sharkey <jsharkey@android.com>2013-08-07 16:29:51 -0700
commit9fb567b59112f99e64e0bff6f343188331bad28d (patch)
tree75be88e422f398bf0b3f5d42bd0dc42a077bdd69 /packages/DocumentsUI/AndroidManifest.xml
parentb156f4bf8cdfe475a7116b627d84a281e1a281b7 (diff)
downloadframeworks_base-9fb567b59112f99e64e0bff6f343188331bad28d.zip
frameworks_base-9fb567b59112f99e64e0bff6f343188331bad28d.tar.gz
frameworks_base-9fb567b59112f99e64e0bff6f343188331bad28d.tar.bz2
Settings, replace files, sorting by size, tweaks.
Add settings to show file sizes and advanced storage devices, both disabled by default. Add sorting by size when enabled in settings. Always show all documents, but only allow selection when they match MIME filter. When creating, select entire filename on focus. When creating, treat selected documents as replacement targets using that exact Uri unless display name is changed. Show available bytes for device roots. Show empty text label in empty directories. Split grid backend and details into two separate lines. Fix path label ordering when rendering recent directories. Change-Id: I44c62e8adb8ca7d4355510a13d1ba975196a2d29
Diffstat (limited to 'packages/DocumentsUI/AndroidManifest.xml')
-rw-r--r--packages/DocumentsUI/AndroidManifest.xml10
1 files changed, 9 insertions, 1 deletions
diff --git a/packages/DocumentsUI/AndroidManifest.xml b/packages/DocumentsUI/AndroidManifest.xml
index 1d97161..27f93c0 100644
--- a/packages/DocumentsUI/AndroidManifest.xml
+++ b/packages/DocumentsUI/AndroidManifest.xml
@@ -7,11 +7,13 @@
android:label="@string/app_label"
android:supportsRtl="true">
+ <!-- TODO: allow rotation when state saving is in better shape -->
<activity
android:name=".DocumentsActivity"
android:finishOnCloseSystemDialogs="true"
android:excludeFromRecents="true"
- android:theme="@android:style/Theme.Holo.Light">
+ android:theme="@android:style/Theme.Holo.Light"
+ android:screenOrientation="nosensor">
<intent-filter android:priority="100">
<action android:name="android.intent.action.OPEN_DOCUMENT" />
<category android:name="android.intent.category.DEFAULT" />
@@ -24,6 +26,12 @@
</intent-filter>
</activity>
+ <activity
+ android:name=".SettingsActivity"
+ android:title="@string/menu_settings"
+ android:theme="@android:style/Theme.Holo.Light"
+ android:exported="false" />
+
<provider
android:name=".RecentsProvider"
android:authorities="com.android.documentsui.recents"