summaryrefslogtreecommitdiffstats
path: root/res/drawable
diff options
context:
space:
mode:
authorMichael Kolb <kolby@google.com>2011-03-08 14:12:06 -0800
committerMichael Kolb <kolby@google.com>2011-03-09 09:37:22 -0800
commit1acef69ffc079d1bc029ff7eb1f5043f7efd7f36 (patch)
tree9e8daece975b283d9866d2c1915cbd86446bb16b /res/drawable
parent66996bfa98bcf98f2ea944ddd27439f554f8f0b9 (diff)
downloadpackages_apps_browser-1acef69ffc079d1bc029ff7eb1f5043f7efd7f36.zip
packages_apps_browser-1acef69ffc079d1bc029ff7eb1f5043f7efd7f36.tar.gz
packages_apps_browser-1acef69ffc079d1bc029ff7eb1f5043f7efd7f36.tar.bz2
add menu options to qc
Bug 4071315 Use the standard menu items to popuplate a menu from within quick controls Change-Id: I80d483ab2ce054e9b70ff4c6b0d6e0d9be783dc4
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/qc_menu_selector.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/res/drawable/qc_menu_selector.xml b/res/drawable/qc_menu_selector.xml
new file mode 100644
index 0000000..141f165
--- /dev/null
+++ b/res/drawable/qc_menu_selector.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 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.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_pressed="true"
+ android:drawable="@*android:drawable/list_selector_pressed_holo_dark" />
+ <item android:state_pressed="false" android:drawable="@drawable/clear" />
+</selector>