blob: b204c20a251c0ab58305ef1eae92e3bedb32674b [file] [log] [blame]
Yorke Leebf34a902013-07-24 19:00:04 -07001<?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 Leebf34a902013-07-24 19:00:04 -070020 style="@style/DialtactsDialpadButtonStyle"
21 android:clickable="true" >
22 <TextView
23 android:id="@+id/dialpad_key_number"
24 android:layout_width="wrap_content"
25 android:layout_height="wrap_content"
Yorke Lee8e2a0682013-07-30 11:14:25 -070026 android:textColor="@color/dialpad_primary_text_color"
27 android:textSize="@dimen/dialpad_key_numbers_size"
Yorke Leebf34a902013-07-24 19:00:04 -070028 android:fontFamily="sans-serif-light"
29 android:layout_centerInParent="true"
30 />
31 <TextView
32 android:id="@+id/dialpad_key_letters"
33 android:layout_width="wrap_content"
34 android:layout_height="wrap_content"
Yorke Lee8e2a0682013-07-30 11:14:25 -070035 android:textColor="@color/dialpad_secondary_text_color"
36 android:textSize="@dimen/dialpad_key_letters_size"
Yorke Leebf34a902013-07-24 19:00:04 -070037 android:paddingRight="11dp"
38 android:layout_alignBaseline="@id/dialpad_key_number"
39 android:fontFamily="sans-serif-light"
40 android:layout_alignParentRight="true"
41 />
42</com.android.dialer.dialpad.DialpadKeyButton>