summaryrefslogtreecommitdiffstats
path: root/res/drawable/all_apps_button_icon.xml
diff options
context:
space:
mode:
authorWinson Chung <winsonc@google.com>2011-09-27 17:45:27 -0700
committerWinson Chung <winsonc@google.com>2011-09-27 18:46:06 -0700
commit90576b5f095371e1ba4fedcb775f43715adf9634 (patch)
tree74786c61008e2a706983dd9c370f928b3ac36a62 /res/drawable/all_apps_button_icon.xml
parent164babc69ce3302e2f90f5621a3f9761bbb5148b (diff)
downloadandroid_packages_apps_Trebuchet-90576b5f095371e1ba4fedcb775f43715adf9634.tar.gz
android_packages_apps_Trebuchet-90576b5f095371e1ba4fedcb775f43715adf9634.tar.bz2
android_packages_apps_Trebuchet-90576b5f095371e1ba4fedcb775f43715adf9634.zip
Fixing some small issues.
- Adding All Apps pressed state (5375824) - Ensuring the drop targets are single line (5375563) - Adding some checks in kb focus logic to appease some frantic monkeys (4508638) - Removing some unused assets Change-Id: I46702ee25c638849c716f0d8428f68c2b06c1c2e
Diffstat (limited to 'res/drawable/all_apps_button_icon.xml')
-rw-r--r--res/drawable/all_apps_button_icon.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/res/drawable/all_apps_button_icon.xml b/res/drawable/all_apps_button_icon.xml
new file mode 100644
index 000000000..7c69cad3a
--- /dev/null
+++ b/res/drawable/all_apps_button_icon.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 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.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_focused="true" android:drawable="@drawable/ic_allapps_pressed" />
+ <item android:state_pressed="true" android:drawable="@drawable/ic_allapps_pressed" />
+ <item android:drawable="@drawable/ic_allapps" />
+</selector>