diff options
author | Jim Miller <jaggies@google.com> | 2011-07-14 18:54:01 -0700 |
---|---|---|
committer | Jim Miller <jaggies@google.com> | 2011-07-18 12:57:40 -0700 |
commit | c0d2731047e2da4eff84a40615e29e08dcb708c5 (patch) | |
tree | b99f546a4a451551914d7ed96927690fce619814 /packages/SystemUI/res/menu | |
parent | fbaa1ea13cf4ebf95f6b4228219d9385781127e5 (diff) | |
download | frameworks_base-c0d2731047e2da4eff84a40615e29e08dcb708c5.zip frameworks_base-c0d2731047e2da4eff84a40615e29e08dcb708c5.tar.gz frameworks_base-c0d2731047e2da4eff84a40615e29e08dcb708c5.tar.bz2 |
Fix 5023708,4689527: Add popups and overlays to recents. Misc bug fixes.
Adds selection overlay to recents to comply with UX design.
Adds longpress popup for removal and inspection of items.
Change-Id: Ic23c3f135b6ed107cc5156505d8f163daa94c52e
Diffstat (limited to 'packages/SystemUI/res/menu')
-rw-r--r-- | packages/SystemUI/res/menu/recent_popup_menu.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/SystemUI/res/menu/recent_popup_menu.xml b/packages/SystemUI/res/menu/recent_popup_menu.xml new file mode 100644 index 0000000..eecfb9a --- /dev/null +++ b/packages/SystemUI/res/menu/recent_popup_menu.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* apps/common/assets/default/default/skins/StatusBar.xml +** +** Copyright 2011, 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/recent_remove_item" android:title="@string/status_bar_recent_remove_item_title" /> + <item android:id="@+id/recent_inspect_item" android:title="@string/status_bar_recent_inspect_item_title" /> +</menu> |