• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 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<!-- Dialpad in the Phone app.
18     Tall screen version with taller buttons.
19 -->
20
21<com.android.phone.ButtonGridLayout xmlns:android="http://schemas.android.com/apk/res/android"
22    android:id="@+id/dialpad"
23    android:paddingLeft="7dp"
24    android:paddingRight="7dp"
25    android:paddingTop="6dp"
26    android:paddingBottom="6dp"
27    android:layout_width="wrap_content"
28    android:layout_height="wrap_content"
29    android:layout_gravity="center_horizontal"
30    android:layout_weight="1"
31>
32        <ImageButton android:id="@+id/one"
33            android:layout_width="88dp"
34            android:layout_height="58dp"
35            android:src="@drawable/dial_num_1_no_vm"
36            android:background="@drawable/btn_dial"
37        />
38
39        <ImageButton android:id="@+id/two"
40            android:layout_width="88dp"
41            android:layout_height="58dp"
42            android:src="@drawable/dial_num_2"
43            android:background="@drawable/btn_dial"
44        />
45
46        <ImageButton android:id="@+id/three"
47            android:layout_width="88dp"
48            android:layout_height="58dp"
49            android:src="@drawable/dial_num_3"
50            android:background="@drawable/btn_dial"
51        />
52
53        <ImageButton android:id="@+id/four"
54            android:layout_width="88dp"
55            android:layout_height="58dp"
56            android:src="@drawable/dial_num_4"
57            android:background="@drawable/btn_dial"
58        />
59
60        <ImageButton android:id="@+id/five"
61            android:layout_width="88dp"
62            android:layout_height="58dp"
63            android:src="@drawable/dial_num_5"
64            android:background="@drawable/btn_dial"
65        />
66
67        <ImageButton android:id="@+id/six"
68            android:layout_width="88dp"
69            android:layout_height="58dp"
70            android:src="@drawable/dial_num_6"
71            android:background="@drawable/btn_dial"
72        />
73
74        <ImageButton android:id="@+id/seven"
75            android:layout_width="88dp"
76            android:layout_height="58dp"
77            android:src="@drawable/dial_num_7"
78            android:background="@drawable/btn_dial"
79        />
80
81        <ImageButton android:id="@+id/eight"
82            android:layout_width="88dp"
83            android:layout_height="58dp"
84            android:src="@drawable/dial_num_8"
85            android:background="@drawable/btn_dial"
86        />
87
88        <ImageButton android:id="@+id/nine"
89            android:layout_width="88dp"
90            android:layout_height="58dp"
91            android:src="@drawable/dial_num_9"
92            android:background="@drawable/btn_dial"
93        />
94
95        <ImageButton android:id="@+id/star"
96            android:layout_width="88dp"
97            android:layout_height="58dp"
98            android:src="@drawable/dial_num_star"
99            android:background="@drawable/btn_dial"
100        />
101
102        <ImageButton android:id="@+id/zero"
103            android:layout_width="88dp"
104            android:layout_height="58dp"
105            android:src="@drawable/dial_num_0"
106            android:background="@drawable/btn_dial"
107        />
108
109        <ImageButton android:id="@+id/pound"
110            android:layout_width="88dp"
111            android:layout_height="58dp"
112            android:src="@drawable/dial_num_pound"
113            android:background="@drawable/btn_dial"
114        />
115</com.android.phone.ButtonGridLayout>
116
117