summaryrefslogtreecommitdiffstats
path: root/res/drawable
diff options
context:
space:
mode:
authorLeon Scroggins <scroggo@google.com>2010-03-22 10:54:04 -0400
committerLeon Scroggins <scroggo@google.com>2010-03-22 10:54:04 -0400
commitbf083d25e023ebebf9593dcb62ac413f28816584 (patch)
tree7074d4f124f4c392002077ce4c6b602a6fcdfe21 /res/drawable
parent3d8b70cc80a42ce1b7146aade2a4a0fca0b1eba2 (diff)
downloadandroid_packages_apps_Gello-bf083d25e023ebebf9593dcb62ac413f28816584.tar.gz
android_packages_apps_Gello-bf083d25e023ebebf9593dcb62ac413f28816584.tar.bz2
android_packages_apps_Gello-bf083d25e023ebebf9593dcb62ac413f28816584.zip
Show stop button in a pressed state when pressed.
Fix for http://b/issue?id=2533372 Change-Id: I9a614a95f5537d17c9cb89e96afe6c21fc56d59a
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/stop_background.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/res/drawable/stop_background.xml b/res/drawable/stop_background.xml
new file mode 100644
index 00000000..a9a4dd4c
--- /dev/null
+++ b/res/drawable/stop_background.xml
@@ -0,0 +1,25 @@
+<?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.
+-->
+
+<!-- Custom background for the stop button which mimics btn_search_dialog
+ but draws in a pressed state even if it is in an unfocused window -->
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <item android:state_pressed="true"
+ android:drawable="@*android:drawable/btn_search_dialog_pressed" />
+ <item android:state_pressed="false"
+ android:drawable="@*android:drawable/btn_search_dialog_default" />
+</selector>