Yorke Lee | bf34a90 | 2013-07-24 19:00:04 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2013 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 | <!-- A layout representing a single key in the dialpad --> |
| 18 | <com.android.dialer.dialpad.DialpadKeyButton |
| 19 | xmlns:android="http://schemas.android.com/apk/res/android" |
Yorke Lee | bf34a90 | 2013-07-24 19:00:04 -0700 | [diff] [blame] | 20 | style="@style/DialtactsDialpadButtonStyle" |
Yorke Lee | 32faffb | 2013-10-06 16:49:41 -0700 | [diff] [blame] | 21 | android:clickable="true" |
| 22 | android:focusable="true" > |
Yorke Lee | 7784087 | 2013-09-06 12:08:08 -0700 | [diff] [blame] | 23 | <LinearLayout |
Yorke Lee | bf34a90 | 2013-07-24 19:00:04 -0700 | [diff] [blame] | 24 | android:layout_width="wrap_content" |
Yorke Lee | f786df0 | 2013-11-04 09:29:21 -0800 | [diff] [blame] | 25 | android:layout_height="wrap_content" |
Yorke Lee | 7784087 | 2013-09-06 12:08:08 -0700 | [diff] [blame] | 26 | android:layout_gravity="center"> |
| 27 | <TextView |
| 28 | android:id="@+id/dialpad_key_number" |
| 29 | android:layout_width="wrap_content" |
| 30 | android:layout_height="wrap_content" |
| 31 | android:textColor="@color/dialpad_primary_text_color" |
| 32 | android:textSize="@dimen/dialpad_key_numbers_size" |
| 33 | android:fontFamily="sans-serif-light" |
| 34 | /> |
| 35 | <TextView |
| 36 | android:id="@+id/dialpad_key_letters" |
| 37 | android:layout_width="@dimen/dialpad_key_letters_width" |
| 38 | android:layout_height="wrap_content" |
| 39 | android:textColor="@color/dialpad_secondary_text_color" |
| 40 | android:textSize="@dimen/dialpad_key_letters_size" |
| 41 | android:paddingLeft="11dp" |
| 42 | android:fontFamily="sans-serif-light" |
| 43 | /> |
| 44 | </LinearLayout> |
Yorke Lee | bf34a90 | 2013-07-24 19:00:04 -0700 | [diff] [blame] | 45 | </com.android.dialer.dialpad.DialpadKeyButton> |