satok | 979f869 | 2010-08-20 14:35:02 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2010 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <resources> |
Tadashi G. Takaoka | 13a7419 | 2011-05-24 21:08:20 +0900 | [diff] [blame] | 18 | <!-- Theme "Basic" --> |
Tadashi G. Takaoka | a619673 | 2011-06-16 17:20:29 +0900 | [diff] [blame] | 19 | <style name="Keyboard"> |
Tadashi G. Takaoka | b7758d6 | 2011-06-15 13:38:58 +0900 | [diff] [blame] | 20 | </style> |
Tadashi G. Takaoka | a619673 | 2011-06-16 17:20:29 +0900 | [diff] [blame] | 21 | <style name="LatinKeyboard"> |
| 22 | <item name="autoCorrectionSpacebarLedIcon">@drawable/sym_keyboard_space_led</item> |
| 23 | <item name="disabledShortcutIcon">@drawable/sym_keyboard_voice_off_holo</item> |
| 24 | <item name="spacebarTextColor">@color/latinkeyboard_bar_language_text</item> |
| 25 | <item name="spacebarTextShadowColor">@color/latinkeyboard_bar_language_shadow_white</item> |
| 26 | <item name="spacebarArrowLeftIcon">@drawable/sym_keyboard_language_arrows_left</item> |
| 27 | <item name="spacebarArrowRightIcon">@drawable/sym_keyboard_language_arrows_right</item> |
| 28 | <item name="spacebarArrowPreviewLeftIcon">@drawable/sym_keyboard_feedback_language_arrows_left</item> |
| 29 | <item name="spacebarArrowPreviewRightIcon">@drawable/sym_keyboard_feedback_language_arrows_right</item> |
| 30 | </style> |
Tadashi G. Takaoka | 5a309f5 | 2010-12-02 18:46:21 +0900 | [diff] [blame] | 31 | <style name="KeyboardView"> |
satok | 979f869 | 2010-08-20 14:35:02 +0900 | [diff] [blame] | 32 | <item name="android:background">@drawable/keyboard_background</item> |
satok | 979f869 | 2010-08-20 14:35:02 +0900 | [diff] [blame] | 33 | <item name="keyBackground">@drawable/btn_keyboard_key</item> |
Tadashi G. Takaoka | d157834 | 2011-05-12 23:49:19 +0900 | [diff] [blame] | 34 | <item name="keyLetterRatio">@fraction/key_letter_ratio</item> |
Tadashi G. Takaoka | 9d9522a | 2011-06-15 12:36:53 +0900 | [diff] [blame^] | 35 | <item name="keyLabelRatio">@fraction/key_label_ratio</item> |
| 36 | <item name="keyHintLetterRatio">@fraction/key_hint_letter_ratio</item> |
| 37 | <item name="keyUppercaseLetterRatio">@fraction/key_uppercase_letter_ratio</item> |
| 38 | <item name="keyTextStyle">normal</item> |
satok | 979f869 | 2010-08-20 14:35:02 +0900 | [diff] [blame] | 39 | <item name="keyTextColor">#FFFFFFFF</item> |
Tadashi G. Takaoka | 9d9522a | 2011-06-15 12:36:53 +0900 | [diff] [blame^] | 40 | <item name="keyTextInactivatedColor">#FFFFFFFF</item> |
| 41 | <item name="keyHintLetterColor">#80000000</item> |
| 42 | <item name="keyUppercaseLetterInactivatedColor">#66E0E4E5</item> |
| 43 | <item name="keyUppercaseLetterActivatedColor">#CCE0E4E5</item> |
| 44 | <item name="keyPopupHintIcon">@drawable/hint_popup</item> |
satok | 395d501 | 2010-09-13 21:54:15 +0900 | [diff] [blame] | 45 | <item name="keyPreviewLayout">@layout/key_preview</item> |
Tadashi G. Takaoka | 2b4cc0d | 2010-09-28 14:35:21 +0900 | [diff] [blame] | 46 | <item name="keyPreviewOffset">@dimen/key_preview_offset</item> |
| 47 | <item name="keyPreviewHeight">@dimen/key_preview_height</item> |
satok | 395d501 | 2010-09-13 21:54:15 +0900 | [diff] [blame] | 48 | <item name="popupLayout">@layout/keyboard_popup</item> |
Tadashi G. Takaoka | 2b4cc0d | 2010-09-28 14:35:21 +0900 | [diff] [blame] | 49 | <item name="keyHysteresisDistance">@dimen/key_hysteresis_distance</item> |
Tadashi G. Takaoka | b1fcbec | 2010-09-27 17:07:09 +0900 | [diff] [blame] | 50 | <item name="verticalCorrection">@dimen/keyboard_vertical_correction</item> |
satok | 979f869 | 2010-08-20 14:35:02 +0900 | [diff] [blame] | 51 | <item name="shadowColor">#BB000000</item> |
| 52 | <item name="shadowRadius">2.75</item> |
| 53 | <item name="backgroundDimAmount">0.5</item> |
Tadashi G. Takaoka | 59c9930 | 2010-11-21 16:40:38 -0800 | [diff] [blame] | 54 | <item name="colorScheme">white</item> |
satok | 979f869 | 2010-08-20 14:35:02 +0900 | [diff] [blame] | 55 | </style> |
Tadashi G. Takaoka | 13a7419 | 2011-05-24 21:08:20 +0900 | [diff] [blame] | 56 | <style name="KeyPreviewStyle"> |
| 57 | <item name="android:background">@drawable/keyboard_key_feedback</item> |
| 58 | </style> |
| 59 | <style name="PopupMiniKeyboardView" parent="KeyboardView"> |
| 60 | <item name="keyBackground">@drawable/btn_keyboard_key_popup</item> |
| 61 | <item name="keyHysteresisDistance">0dip</item> |
| 62 | <item name="verticalCorrection">@dimen/mini_keyboard_vertical_correction</item> |
| 63 | </style> |
| 64 | <style name="PopupMiniKeyboardPanelStyle"> |
| 65 | <item name="android:background">@drawable/keyboard_popup_panel_background</item> |
| 66 | <item name="android:paddingLeft">@dimen/mini_keyboard_horizontal_padding</item> |
| 67 | <item name="android:paddingRight">@dimen/mini_keyboard_horizontal_padding</item> |
| 68 | </style> |
| 69 | <style name="SuggestionsStripBackgroundStyle"> |
| 70 | <item name="android:background">@drawable/keyboard_suggest_strip</item> |
| 71 | </style> |
| 72 | <style name="SuggestionBackgroundStyle"> |
| 73 | <item name="android:background">@drawable/btn_candidate</item> |
| 74 | </style> |
| 75 | <style name="SuggestionPreviewBackgroundStyle"> |
| 76 | <item name="android:background">@drawable/candidate_feedback_background</item> |
| 77 | </style> |
Tadashi G. Takaoka | 08a6f2a | 2011-06-15 11:49:57 +0900 | [diff] [blame] | 78 | <style name="CandidateViewStyle" parent="SuggestionsStripBackgroundStyle"> |
Tadashi G. Takaoka | 08a6f2a | 2011-06-15 11:49:57 +0900 | [diff] [blame] | 79 | <item name="colorTypedWord">#FFFFFFFF</item> |
| 80 | <item name="colorAutoCorrect">#FFFCAE00</item> |
| 81 | <item name="colorSuggested">#FFFCAE00</item> |
| 82 | <item name="iconExpandPane">@drawable/btn_expand_candidates_pane</item> |
| 83 | <item name="iconClosePane">@drawable/btn_close_candidates_pane</item>" |
| 84 | </style> |
Tadashi G. Takaoka | 13a7419 | 2011-05-24 21:08:20 +0900 | [diff] [blame] | 85 | <!-- Theme "Basic high contrast" --> |
| 86 | <style name="KeyboardView.HighContrast" parent="KeyboardView"> |
| 87 | <item name="android:background">@android:color/black</item> |
| 88 | <item name="keyBackground">@drawable/btn_keyboard_key3</item> |
| 89 | </style> |
| 90 | <!-- Theme "Stone" --> |
Tadashi G. Takaoka | a619673 | 2011-06-16 17:20:29 +0900 | [diff] [blame] | 91 | <style name="LatinKeyboard.Stone" patent="LatinKeyboard"> |
| 92 | <item name="spacebarTextColor">#FF444444</item> |
| 93 | <item name="spacebarTextShadowColor">@color/latinkeyboard_bar_language_shadow_black</item> |
| 94 | <item name="disabledShortcutIcon">@drawable/sym_bkeyboard_voice_off</item> |
| 95 | </style> |
Tadashi G. Takaoka | 13a7419 | 2011-05-24 21:08:20 +0900 | [diff] [blame] | 96 | <style name="KeyboardView.Stone" parent="KeyboardView"> |
| 97 | <item name="keyBackground">@drawable/btn_keyboard_key_stone</item> |
| 98 | <item name="keyTextColor">@color/latinkeyboard_key_color_black</item> |
Tadashi G. Takaoka | 9d9522a | 2011-06-15 12:36:53 +0900 | [diff] [blame^] | 99 | <item name="keyTextInactivatedColor">#FF808080</item> |
Tadashi G. Takaoka | 13a7419 | 2011-05-24 21:08:20 +0900 | [diff] [blame] | 100 | <item name="shadowColor">@color/latinkeyboard_key_color_white</item> |
| 101 | <item name="colorScheme">black</item> |
| 102 | </style> |
| 103 | <style name="PopupMiniKeyboardView.Stone" parent="PopupMiniKeyboardView"> |
| 104 | <item name="keyBackground">@drawable/btn_keyboard_key_stone</item> |
| 105 | <item name="keyTextColor">@color/latinkeyboard_key_color_black</item> |
| 106 | <item name="shadowColor">@color/latinkeyboard_key_color_white</item> |
| 107 | </style> |
| 108 | <!-- Theme "Stone bold" --> |
| 109 | <style name="KeyboardView.Stone.Bold" parent="KeyboardView.Stone"> |
Tadashi G. Takaoka | 9d9522a | 2011-06-15 12:36:53 +0900 | [diff] [blame^] | 110 | <item name="keyTextStyle">bold</item> |
Tadashi G. Takaoka | 13a7419 | 2011-05-24 21:08:20 +0900 | [diff] [blame] | 111 | </style> |
| 112 | <!-- Theme "Gingerbread" --> |
| 113 | <style name="KeyboardView.Gingerbread" parent="KeyboardView"> |
| 114 | <item name="android:background">@drawable/keyboard_dark_background</item> |
| 115 | <item name="keyBackground">@drawable/btn_keyboard_key_gingerbread</item> |
Tadashi G. Takaoka | 9d9522a | 2011-06-15 12:36:53 +0900 | [diff] [blame^] | 116 | <item name="keyTextStyle">bold</item> |
Tadashi G. Takaoka | 13a7419 | 2011-05-24 21:08:20 +0900 | [diff] [blame] | 117 | </style> |
| 118 | <style name="PopupMiniKeyboardView.Gingerbread" parent="PopupMiniKeyboardView"> |
| 119 | <item name="android:background">@null</item> |
| 120 | </style> |
| 121 | <!-- Theme "Honeycomb" --> |
Tadashi G. Takaoka | b7758d6 | 2011-06-15 13:38:58 +0900 | [diff] [blame] | 122 | <style name="Keyboard.Honeycomb" parent="Keyboard" > |
Tadashi G. Takaoka | b7758d6 | 2011-06-15 13:38:58 +0900 | [diff] [blame] | 123 | </style> |
Tadashi G. Takaoka | a619673 | 2011-06-16 17:20:29 +0900 | [diff] [blame] | 124 | <style name="LatinKeyboard.Honeycomb" parent="LatinKeyboard"> |
| 125 | <item name="autoCorrectionSpacebarLedIcon">@null</item> |
| 126 | <item name="disabledShortcutIcon">@drawable/sym_keyboard_voice_off_holo</item> |
| 127 | </style> |
Tadashi G. Takaoka | 13a7419 | 2011-05-24 21:08:20 +0900 | [diff] [blame] | 128 | <style name="KeyboardView.Honeycomb" parent="KeyboardView"> |
| 129 | <item name="android:background">@drawable/keyboard_background_holo</item> |
| 130 | <item name="keyBackground">@drawable/btn_keyboard_key_honeycomb</item> |
Tadashi G. Takaoka | 9d9522a | 2011-06-15 12:36:53 +0900 | [diff] [blame^] | 131 | <item name="keyTextStyle">bold</item> |
| 132 | <item name="keyTextInactivatedColor">#66E0E4E5</item> |
| 133 | <item name="keyHintLetterColor">#80000000</item> |
| 134 | <item name="keyUppercaseLetterInactivatedColor">#66E0E4E5</item> |
| 135 | <item name="keyUppercaseLetterActivatedColor">#FFFFFFFF</item> |
| 136 | <item name="keyPopupHintIcon">@drawable/hint_popup_holo</item> |
Tadashi G. Takaoka | 13a7419 | 2011-05-24 21:08:20 +0900 | [diff] [blame] | 137 | <item name="keyPreviewHeight">@dimen/key_preview_height_holo</item> |
| 138 | <item name="keyPreviewOffset">@dimen/key_preview_offset_holo</item> |
Tadashi G. Takaoka | 13a7419 | 2011-05-24 21:08:20 +0900 | [diff] [blame] | 139 | <item name="shadowColor">#00000000</item> |
| 140 | <item name="shadowRadius">0.0</item> |
| 141 | </style> |
| 142 | <style name="KeyPreviewStyle.Honeycomb"> |
| 143 | <item name="android:background">@drawable/keyboard_key_feedback_honeycomb</item> |
| 144 | </style> |
| 145 | <style name="PopupMiniKeyboardView.Honeycomb" parent="PopupMiniKeyboardView"> |
| 146 | <item name="android:background">@null</item> |
| 147 | <item name="keyBackground">@drawable/btn_keyboard_key_popup_honeycomb</item> |
| 148 | </style> |
| 149 | <style name="PopupMiniKeyboardPanelStyle.Honeycomb"> |
| 150 | <item name="android:background">@drawable/keyboard_popup_panel_background_holo</item> |
| 151 | <item name="android:paddingLeft">@dimen/mini_keyboard_horizontal_padding_holo</item> |
| 152 | <item name="android:paddingRight">@dimen/mini_keyboard_horizontal_padding_holo</item> |
| 153 | </style> |
Tadashi G. Takaoka | b7758d6 | 2011-06-15 13:38:58 +0900 | [diff] [blame] | 154 | <style name="SuggestionsStripBackgroundStyle.Honeycomb"> |
Tadashi G. Takaoka | 13a7419 | 2011-05-24 21:08:20 +0900 | [diff] [blame] | 155 | <item name="android:background">@drawable/keyboard_suggest_strip_holo</item> |
| 156 | </style> |
Tadashi G. Takaoka | b7758d6 | 2011-06-15 13:38:58 +0900 | [diff] [blame] | 157 | <style name="SuggestionBackgroundStyle.Honeycomb"> |
Tadashi G. Takaoka | 13a7419 | 2011-05-24 21:08:20 +0900 | [diff] [blame] | 158 | <item name="android:background">@drawable/btn_candidate_holo</item> |
| 159 | </style> |
Tadashi G. Takaoka | b7758d6 | 2011-06-15 13:38:58 +0900 | [diff] [blame] | 160 | <style name="SuggestionPreviewBackgroundStyle.Honeycomb"> |
Tadashi G. Takaoka | 13a7419 | 2011-05-24 21:08:20 +0900 | [diff] [blame] | 161 | <item name="android:background">@drawable/keyboard_popup_panel_background_holo</item> |
| 162 | </style> |
Tadashi G. Takaoka | 08a6f2a | 2011-06-15 11:49:57 +0900 | [diff] [blame] | 163 | <style name="CandidateViewStyle.Honeycomb" parent="SuggestionsStripBackgroundStyle.Honeycomb"> |
| 164 | <item name="autoCorrectHighlight">autoCorrectUnderline|autoCorrectInvert</item> |
| 165 | <item name="colorTypedWord">#FFFFFFFF</item> |
| 166 | <item name="colorAutoCorrect">#FFFFFFFF</item> |
| 167 | <item name="colorSuggested">#FFFFFFFF</item> |
| 168 | <item name="iconExpandPane">@drawable/btn_expand_candidates_pane</item> |
| 169 | <item name="iconClosePane">@drawable/btn_close_candidates_pane</item>" |
| 170 | </style> |
Tadashi G. Takaoka | ff082d0 | 2011-04-27 14:14:45 +0900 | [diff] [blame] | 171 | <style name="PopupMiniKeyboardAnimation"> |
Tadashi G. Takaoka | 0ae817c | 2010-09-16 14:54:45 +0900 | [diff] [blame] | 172 | <item name="android:windowEnterAnimation">@anim/mini_keyboard_fadein</item> |
| 173 | <item name="android:windowExitAnimation">@anim/mini_keyboard_fadeout</item> |
| 174 | </style> |
satok | 979f869 | 2010-08-20 14:35:02 +0900 | [diff] [blame] | 175 | </resources> |