1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2022 The Android Open Source Project 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"); 6 ~ you may not use this file except in compliance with the License. 7 ~ You may obtain a copy of the License at 8 ~ 9 ~ http://www.apache.org/licenses/LICENSE-2.0 10 ~ 11 ~ Unless required by applicable law or agreed to in writing, software 12 ~ distributed under the License is distributed on an "AS IS" BASIS, 13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ~ See the License for the specific language governing permissions and 15 ~ limitations under the License. 16 --> 17 18<resources> 19 <style name="KeyboardArea"> 20 <item name="android:layout_width">match_parent</item> 21 <item name="android:layout_height">wrap_content</item> 22 <item name="android:layout_gravity">bottom</item> 23 <item name="android:orientation">vertical</item> 24 <item name="android:background">#FFFFFFFF</item> 25 </style> 26 27 <style name="KeyboardRow"> 28 <item name="android:layout_width">match_parent</item> 29 <item name="android:layout_height">@dimen/keyboard_row_height</item> 30 <item name="android:orientation">horizontal</item> 31 </style> 32 33 <style name="KeyboardRow.Header"> 34 <item name="android:layout_height">@dimen/keyboard_header_height</item> 35 <item name="android:background">#FFEEEEEE</item> 36 </style> 37 38 <style name="SoftKey"> 39 <item name="android:layout_width">0dp</item> 40 <item name="android:layout_height">match_parent</item> 41 <item name="android:layout_weight">2</item> 42 <item name="android:gravity">center</item> 43 <item name="android:textColor">#FF000000</item> 44 <item name="android:textSize">@dimen/text_size_normal</item> 45 <item name="android:fontFamily">roboto-regular</item> 46 <item name="android:background">@drawable/key_border</item> 47 </style> 48 49 <style name="SoftKey.Function"> 50 <item name="android:layout_weight">3</item> 51 <item name="android:textColor">#FF333333</item> 52 <item name="android:textSize">@dimen/text_size_symbol</item> 53 </style> 54 55 <style name="SoftKey.Function.Bottom"> 56 <item name="android:layout_weight">3</item> 57 <item name="android:textColor">#FF333333</item> 58 <item name="android:textSize">@dimen/text_size_symbol</item> 59 </style> 60 61 <style name="SoftKey.Space"> 62 <item name="android:layout_weight">10</item> 63 <item name="android:textColor">#FF333333</item> 64 <item name="android:textSize">@dimen/text_size_symbol</item> 65 </style> 66</resources>