diff options
author | 2010-11-19 00:31:20 -0800 | |
---|---|---|
committer | 2010-11-19 01:37:38 -0800 | |
commit | 75fde6489039c09056fb5e64d39630ece5ad57cf (patch) | |
tree | 891a1fe3e3e78cce0d5a5a19e0ccc7b4bb1d4808 /java/res/drawable | |
parent | f27364600c742509b48857e6b8f17312033e0dc7 (diff) | |
download | latinime-75fde6489039c09056fb5e64d39630ece5ad57cf.tar.gz latinime-75fde6489039c09056fb5e64d39630ece5ad57cf.tar.xz latinime-75fde6489039c09056fb5e64d39630ece5ad57cf.zip |
Cleanup drawable-xlarge resources into drawable-mdpi
Change-Id: I2db335a601ddb0062a637a71289e14cf1d375a1e
Diffstat (limited to 'java/res/drawable')
-rw-r--r-- | java/res/drawable/btn_keyboard_key_honeycomb.xml | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/java/res/drawable/btn_keyboard_key_honeycomb.xml b/java/res/drawable/btn_keyboard_key_honeycomb.xml new file mode 100644 index 000000000..3dab8430f --- /dev/null +++ b/java/res/drawable/btn_keyboard_key_honeycomb.xml @@ -0,0 +1,43 @@ +<?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. +--> + +<!-- TODO: Remove "gingerbread" from file name and rename this to "btn_keyboard_key.xml". --> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + + <!-- Functional keys. --> + + <item android:state_single="true" android:state_pressed="true" + android:drawable="@drawable/btn_keyboard_key_dark_pressed_holo" /> + <item android:state_single="true" + android:drawable="@drawable/btn_keyboard_key_dark_normal_holo" /> + + <!-- Toggle keys. Use checkable/checked state. --> + + <item android:state_checkable="true" android:state_checked="true" android:state_pressed="true" + android:drawable="@drawable/btn_keyboard_key_dark_pressed_on_holo" /> + <item android:state_checkable="true" android:state_pressed="true" + android:drawable="@drawable/btn_keyboard_key_dark_pressed_off_holo" /> + <item android:state_checkable="true" android:state_checked="true" + android:drawable="@drawable/btn_keyboard_key_dark_normal_on_holo" /> + <item android:state_checkable="true" + android:drawable="@drawable/btn_keyboard_key_dark_normal_off_holo" /> + + <!-- Normal keys --> + + <item android:state_pressed="true" + android:drawable="@drawable/btn_keyboard_key_light_pressed_holo" /> + <item android:drawable="@drawable/btn_keyboard_key_light_normal_holo" /> +</selector> |