summaryrefslogtreecommitdiffstats
path: root/res/menu
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2015-04-11 21:27:33 -0700
committerJeff Sharkey <jsharkey@android.com>2015-04-12 22:02:32 -0700
commit42833b2ff4d7a26dd9a609d2fd4436d9a26f28b5 (patch)
tree18ffcc0f4eea720d6a98de6c3549600e6f7d1b53 /res/menu
parent09c0c1385a08c23b8063626d5f439088b27d9c52 (diff)
downloadpackages_apps_Settings-42833b2ff4d7a26dd9a609d2fd4436d9a26f28b5.tar.gz
packages_apps_Settings-42833b2ff4d7a26dd9a609d2fd4436d9a26f28b5.tar.bz2
packages_apps_Settings-42833b2ff4d7a26dd9a609d2fd4436d9a26f28b5.zip
Checkpoint of new storage UI.
Top-level storage UI now shows list of all devices, both internal and adopted/private volumes, and public/shared volumes. When viewing a private volume, show traditional clustering of data types, including summary of other users. For adopted volumes, any actions are tucked away in a menu, since they're not primary. Misc files browsing is now provided by DocumentsUI. Teach StorageMeasurement about new private volumes, including handling emulated volumes stacked above them. When measuring, only consider apps actually hosted on the current volume UUID. When viewing a public volume, we default to launching into file management mode, and offer a simple eject button at the top-level view. File management mode is offered by new DocumentsUI browse intent, and a Settings link there redirects back to us for actual operations like ejecting/formatting. When unmounted, we launch into our action view. Actions like ejecting/formatting just show simple toasts for now. Bug: 19993667 Change-Id: Ie990ef3c01fb3717aaf8c79bfc53aac7edefdcf7
Diffstat (limited to 'res/menu')
-rw-r--r--res/menu/storage_volume.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/res/menu/storage_volume.xml b/res/menu/storage_volume.xml
new file mode 100644
index 000000000..093a4bb37
--- /dev/null
+++ b/res/menu/storage_volume.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<menu xmlns:android="http://schemas.android.com/apk/res/android">
+ <item
+ android:id="@+id/storage_rename"
+ android:title="@string/storage_menu_rename" />
+ <item
+ android:id="@+id/storage_mount"
+ android:title="@string/storage_menu_mount" />
+ <item
+ android:id="@+id/storage_unmount"
+ android:title="@string/storage_menu_unmount" />
+ <item
+ android:id="@+id/storage_format"
+ android:title="@string/storage_menu_format" />
+ <item
+ android:id="@+id/storage_usb"
+ android:title="@string/storage_menu_usb" />
+</menu>