diff options
author | 2011-06-28 00:32:19 -0700 | |
---|---|---|
committer | 2011-06-28 00:32:19 -0700 | |
commit | 49c8567db2f1bd9ceeb519f78ae6fb6ad7cb0ee0 (patch) | |
tree | c310c889556db12828a47efc388fcb3b664cfc95 /java/res/drawable | |
parent | 87089985b1ca396557d1350e9433c958a39adf11 (diff) | |
parent | d87f28f1457f5490df3796fa2a8d815b2bcde152 (diff) | |
download | latinime-49c8567db2f1bd9ceeb519f78ae6fb6ad7cb0ee0.tar.gz latinime-49c8567db2f1bd9ceeb519f78ae6fb6ad7cb0ee0.tar.xz latinime-49c8567db2f1bd9ceeb519f78ae6fb6ad7cb0ee0.zip |
Merge "Use left/right-edge popup preview background"
Diffstat (limited to 'java/res/drawable')
-rw-r--r-- | java/res/drawable/keyboard_key_feedback_left_ics.xml | 21 | ||||
-rw-r--r-- | java/res/drawable/keyboard_key_feedback_right_ics.xml | 21 |
2 files changed, 42 insertions, 0 deletions
diff --git a/java/res/drawable/keyboard_key_feedback_left_ics.xml b/java/res/drawable/keyboard_key_feedback_left_ics.xml new file mode 100644 index 000000000..b68b37f6b --- /dev/null +++ b/java/res/drawable/keyboard_key_feedback_left_ics.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_long_pressable="true" + android:drawable="@drawable/keyboard_key_feedback_left_more_background_holo" /> + <item android:drawable="@drawable/keyboard_key_feedback_left_background_holo" /> +</selector> diff --git a/java/res/drawable/keyboard_key_feedback_right_ics.xml b/java/res/drawable/keyboard_key_feedback_right_ics.xml new file mode 100644 index 000000000..830678a5a --- /dev/null +++ b/java/res/drawable/keyboard_key_feedback_right_ics.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_long_pressable="true" + android:drawable="@drawable/keyboard_key_feedback_right_more_background_holo" /> + <item android:drawable="@drawable/keyboard_key_feedback_right_background_holo" /> +</selector> |