themes-lxx-light.xml revision 0f33e614c0799fa3a14a2c32db4bf0654df039da
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2014, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11**     http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20
21<resources xmlns:android="http://schemas.android.com/apk/res/android">
22    <style name="KeyboardTheme.LXX_Light" parent="KeyboardIcons.LXX_Light">
23        <item name="keyboardStyle">@style/Keyboard.LXX_Light</item>
24        <item name="keyboardViewStyle">@style/KeyboardView.LXX_Light</item>
25        <item name="mainKeyboardViewStyle">@style/MainKeyboardView.LXX_Light</item>
26        <item name="emojiPalettesViewStyle">@style/EmojiPalettesView.LXX_Light</item>
27        <item name="moreKeysKeyboardStyle">@style/MoreKeysKeyboard.LXX_Light</item>
28        <item name="moreKeysKeyboardViewStyle">@style/MoreKeysKeyboardView.LXX_Light</item>
29        <item name="moreKeysKeyboardViewForActionStyle">@style/MoreKeysKeyboardView.LXX_Light.Action</item>
30        <item name="suggestionStripViewStyle">@style/SuggestionStripView.LXX_Light</item>
31        <item name="suggestionWordStyle">@style/SuggestionWord.LXX_Light</item>
32    </style>
33    <style
34        name="Keyboard.LXX_Light"
35        parent="Keyboard"
36    >
37        <!-- This should be aligned with KeyboardTheme.THEME_ID_* -->
38        <item name="themeId">LXXLight</item>
39    </style>
40    <style
41        name="KeyboardView.LXX_Light"
42        parent="KeyboardView.LXX"
43    >
44        <item name="android:background">@drawable/keyboard_background_lxx_light</item>
45        <item name="keyBackground">@drawable/btn_keyboard_key_lxx_light</item>
46        <item name="functionalKeyBackground">@drawable/btn_keyboard_key_functional_lxx_light</item>
47        <item name="spacebarBackground">@drawable/btn_keyboard_spacebar_lxx_light</item>
48        <item name="keyTextColor">@color/key_text_color_lxx_light</item>
49        <item name="keyTextInactivatedColor">@color/key_text_inactive_color_lxx_light</item>
50        <item name="functionalTextColor">@color/key_functional_text_color_lxx_light</item>
51        <item name="keyHintLetterColor">@color/key_hint_letter_color_lxx_light</item>
52        <item name="keyHintLabelColor">@color/key_text_inactive_color_lxx_light</item>
53        <item name="keyShiftedLetterHintInactivatedColor">@color/key_text_inactive_color_lxx_light</item>
54        <item name="keyShiftedLetterHintActivatedColor">@color/key_text_color_lxx_light</item>
55        <item name="keyPreviewTextColor">@color/key_text_color_lxx_light</item>
56    </style>
57    <style
58        name="MainKeyboardView.LXX_Light"
59        parent="KeyboardView.LXX_Light"
60    >
61        <item name="moreKeysKeyboardForActionLayout">@layout/more_keys_keyboard_for_action_lxx</item>
62        <item name="keyPreviewBackground">@drawable/keyboard_key_feedback_lxx_light</item>
63        <item name="keyPreviewOffset">@dimen/config_key_preview_offset_holo</item>
64        <item name="keyPreviewShowUpAnimator">@anim/key_preview_show_up_lxx</item>
65        <item name="keyPreviewDismissAnimator">@anim/key_preview_dismiss_lxx</item>
66        <item name="gestureFloatingPreviewTextColor">@color/auto_correct_color_lxx_light</item>
67        <item name="gestureFloatingPreviewColor">@color/gesture_floating_preview_color_lxx_light</item>
68        <item name="gestureTrailColor">@color/gesture_trail_color_lxx_light</item>
69        <item name="slidingKeyInputPreviewColor">@color/sliding_key_input_preview_color_lxx_light</item>
70        <item name="languageOnSpacebarTextColor">@color/language_on_spacebar_text_color_lxx_light</item>
71        <!-- A negative value to disable text shadow layer. -->
72        <item name="languageOnSpacebarTextShadowRadius">-1.0</item>
73    </style>
74    <!-- Though {@link EmojiPalettesView} doesn't extend {@link KeyboardView}, some views inside it,
75         for instance delete button, need themed {@link KeyboardView} attributes. -->
76    <style
77        name="EmojiPalettesView.LXX_Light"
78        parent="MainKeyboardView.LXX_Light"
79    >
80        <item name="categoryIndicatorEnabled">false</item>
81        <item name="categoryPageIndicatorColor">@color/highlight_color_lxx_light</item>
82        <item name="categoryPageIndicatorBackground">@color/emoji_tab_page_indicator_background_lxx_light</item>
83        <item name="iconEmojiRecentsTab">@drawable/ic_emoji_recents_lxx_light</item>
84        <item name="iconEmojiCategory1Tab">@drawable/ic_emoji_people_lxx_light</item>
85        <item name="iconEmojiCategory2Tab">@drawable/ic_emoji_objects_lxx_light</item>
86        <item name="iconEmojiCategory3Tab">@drawable/ic_emoji_nature_lxx_light</item>
87        <item name="iconEmojiCategory4Tab">@drawable/ic_emoji_places_lxx_light</item>
88        <item name="iconEmojiCategory5Tab">@drawable/ic_emoji_symbols_lxx_light</item>
89        <item name="iconEmojiCategory6Tab">@drawable/ic_emoji_emoticons_lxx_light</item>
90    </style>
91    <style
92        name="MoreKeysKeyboard.LXX_Light"
93        parent="Keyboard.LXX_Light"
94    >
95        <item name="keyboardTopPadding">0%p</item>
96        <item name="keyboardBottomPadding">0%p</item>
97        <item name="horizontalGap">0%p</item>
98        <item name="touchPositionCorrectionData">@null</item>
99    </style>
100    <style
101        name="MoreKeysKeyboardView.LXX_Light"
102        parent="KeyboardView.LXX_Light"
103    >
104        <item name="android:background">@drawable/keyboard_popup_panel_background_lxx_light</item>
105        <item name="keyBackground">@drawable/btn_keyboard_key_popup_lxx_light</item>
106        <item name="divider">@drawable/more_keys_divider</item>
107        <item name="keyTypeface">normal</item>
108        <item name="verticalCorrection">@dimen/config_more_keys_keyboard_vertical_correction_holo</item>
109    </style>
110    <style
111        name="MoreKeysKeyboardView.LXX_Light.Action"
112        parent="MoreKeysKeyboardView.LXX_Light"
113    >
114        <item name="android:background">@android:color/transparent</item>
115        <item name="keyBackground">@drawable/btn_keyboard_key_popup_action_lxx_light</item>
116        <item name="divider">@null</item>
117    </style>
118    <style
119        name="SuggestionStripView.LXX_Light"
120        parent="KeyboardView.LXX_Light"
121    >
122        <item name="suggestionsCountInStrip">@integer/config_suggestions_count_in_strip</item>
123        <item name="centerSuggestionPercentile">@fraction/config_center_suggestion_percentile</item>
124        <item name="maxMoreSuggestionsRow">@integer/config_max_more_suggestions_row</item>
125        <item name="minMoreSuggestionsWidth">@fraction/config_min_more_suggestions_width</item>
126        <item name="android:background">@drawable/keyboard_suggest_strip_lxx_light</item>
127        <item name="android:src">@drawable/suggestions_strip_divider_lxx_light</item>
128        <item name="suggestionStripOptions">autoCorrectBold|validTypedWordBold</item>
129        <item name="colorValidTypedWord">@color/typed_word_color_lxx_light</item>
130        <item name="colorTypedWord">@color/typed_word_color_lxx_light</item>
131        <item name="colorAutoCorrect">@color/auto_correct_color_lxx_light</item>
132        <item name="colorSuggested">@color/suggested_word_color_lxx_light</item>
133        <item name="alphaObsoleted">70%</item>
134    </style>
135    <style
136        name="SuggestionWord.LXX_Light"
137        parent="SuggestionWord"
138    >
139        <item name="android:background">@drawable/btn_suggestion_lxx_light</item>
140        <item name="android:textColor">@color/highlight_color_lxx_light</item>
141    </style>
142</resources>
143