blob: 5bf858c43c6c8dd6e8ec15f3013f1c4bea160976 [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"
Ihab Awad3eb82152014-02-27 12:55:36 -080020 style="@style/DialpadKeyButtonStyle">
21
22 <LinearLayout style="@style/DialpadKeyInternalLayoutStyle">
23
24 <!-- Note in the referenced styles that we assign hard widths to these components
25 because we want them to line up vertically when we arrange them in an MxN grid -->
26
27 <TextView
28 android:id="@+id/dialpad_key_number"
29 style="@style/DialpadKeyNumberStyle" />
30
31 <TextView
32 android:id="@+id/dialpad_key_letters"
33 style="@style/DialpadKeyLettersStyle" />
Yorke Lee77840872013-09-06 12:08:08 -070034 </LinearLayout>
Yorke Leebf34a902013-07-24 19:00:04 -070035</com.android.dialer.dialpad.DialpadKeyButton>