Sai Cheemalapati | 13b8948 | 2014-06-19 12:33:34 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ~ Copyright (C) 2012 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> |
| 18 | <style name="DialpadSpaceStyle"> |
| 19 | <item name="android:layout_width">0dp</item> |
| 20 | <item name="android:layout_height">match_parent</item> |
| 21 | <item name="android:layout_weight">3</item> |
| 22 | </style> |
| 23 | |
| 24 | <style name="DialpadKeyNumberStyle"> |
| 25 | <item name="android:textColor">@color/dialpad_primary_text_color</item> |
| 26 | <item name="android:textSize">@dimen/dialpad_key_numbers_size</item> |
| 27 | <item name="android:fontFamily">sans-serif-light</item> |
| 28 | <item name="android:layout_width">wrap_content</item> |
| 29 | <item name="android:layout_height">wrap_content</item> |
| 30 | <item name="android:layout_marginBottom">@dimen/dialpad_key_number_margin_bottom</item> |
| 31 | <item name="android:gravity">center</item> |
| 32 | </style> |
| 33 | |
Nancy Chen | 9764a82 | 2014-07-29 14:34:52 -0700 | [diff] [blame^] | 34 | <style name="DialpadBottomKeyNumberStyle" parent="DialpadKeyNumberStyle"> |
| 35 | <item name="android:layout_marginBottom">@dimen/dialpad_zero_key_number_margin_bottom</item> |
| 36 | </style> |
| 37 | |
Sai Cheemalapati | 13b8948 | 2014-06-19 12:33:34 -0700 | [diff] [blame] | 38 | <style name="DialpadKeyStarStyle"> |
| 39 | <item name="android:textColor">@color/dialpad_secondary_text_color</item> |
| 40 | <item name="android:textSize">@dimen/dialpad_key_star_size</item> |
| 41 | <item name="android:layout_width">wrap_content</item> |
| 42 | <item name="android:layout_height">wrap_content</item> |
| 43 | <item name="android:layout_marginBottom">@dimen/dialpad_symbol_margin_bottom</item> |
| 44 | <item name="android:gravity">center</item> |
| 45 | </style> |
| 46 | |
| 47 | <style name="DialpadKeyPoundStyle"> |
| 48 | <item name="android:textColor">@color/dialpad_secondary_text_color</item> |
| 49 | <item name="android:textSize">@dimen/dialpad_key_pound_size</item> |
| 50 | <item name="android:layout_width">wrap_content</item> |
| 51 | <item name="android:layout_height">wrap_content</item> |
| 52 | <item name="android:layout_marginBottom">@dimen/dialpad_symbol_margin_bottom</item> |
| 53 | <item name="android:gravity">center</item> |
| 54 | </style> |
| 55 | |
| 56 | <style name="DialpadKeyLettersStyle"> |
| 57 | <item name="android:textColor">@color/dialpad_secondary_text_color</item> |
| 58 | <item name="android:textSize">@dimen/dialpad_key_letters_size</item> |
| 59 | <item name="android:fontFamily">sans-serif-medium</item> |
| 60 | <item name="android:layout_width">wrap_content</item> |
| 61 | <item name="android:layout_height">wrap_content</item> |
| 62 | <item name="android:gravity">center_horizontal</item> |
| 63 | </style> |
| 64 | |
| 65 | <style name="DialpadKeyButtonStyle"> |
| 66 | <item name="android:soundEffectsEnabled">false</item> |
| 67 | <item name="android:clickable">true</item> |
| 68 | <item name="android:layout_width">0dp</item> |
| 69 | <item name="android:layout_height">match_parent</item> |
| 70 | <item name="android:layout_weight">13</item> |
| 71 | <item name="android:minHeight">@dimen/dialpad_key_height</item> |
| 72 | <item name="android:background">@drawable/btn_dialpad_key</item> |
| 73 | <item name="android:focusable">true</item> |
| 74 | </style> |
| 75 | |
| 76 | <style name="DialpadBottomKeyButtonStyle" parent="DialpadKeyButtonStyle"> |
| 77 | <item name="android:layout_height">@dimen/dialpad_bottom_key_height</item> |
| 78 | </style> |
| 79 | |
| 80 | <style name="DialpadKeyInternalLayoutStyle"> |
| 81 | <item name="android:layout_width">wrap_content</item> |
| 82 | <item name="android:layout_height">wrap_content</item> |
| 83 | <item name="android:layout_gravity">center</item> |
| 84 | <item name="android:gravity">center</item> |
| 85 | <item name="android:orientation">vertical</item> |
| 86 | </style> |
| 87 | </resources> |