| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright (C) 2006 The Android Open Source Project |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| |
| <!-- Dialpad in the Phone app. --> |
| <TableLayout |
| xmlns:android="http://schemas.android.com/apk/res/android" |
| android:id="@+id/dialpad" |
| android:layout_width="match_parent" |
| android:layout_height="0px" |
| android:layout_weight="@integer/dialpad_layout_weight_dialpad" |
| android:layout_gravity="center_horizontal" |
| android:layout_marginTop="@dimen/dialpad_vertical_margin" |
| android:paddingStart="5dip" |
| android:paddingEnd="5dip" |
| android:paddingBottom="10dip" |
| android:stretchColumns="0,1,2" |
| android:layoutDirection="ltr" > |
| |
| <TableRow |
| android:layout_height="0px" |
| android:layout_weight="1"> |
| <include layout="@layout/dialpad_key" android:id="@+id/one"/> |
| <include layout="@layout/dialpad_key" android:id="@+id/two"/> |
| <include layout="@layout/dialpad_key" android:id="@+id/three"/> |
| </TableRow> |
| |
| <TableRow |
| android:layout_height="0px" |
| android:layout_weight="1"> |
| <include layout="@layout/dialpad_key" android:id="@+id/four"/> |
| <include layout="@layout/dialpad_key" android:id="@+id/five"/> |
| <include layout="@layout/dialpad_key" android:id="@+id/six"/> |
| </TableRow> |
| |
| <TableRow |
| android:layout_height="0px" |
| android:layout_weight="1"> |
| <include layout="@layout/dialpad_key" android:id="@+id/seven"/> |
| <include layout="@layout/dialpad_key" android:id="@+id/eight"/> |
| <include layout="@layout/dialpad_key" android:id="@+id/nine"/> |
| </TableRow> |
| |
| <TableRow |
| android:layout_height="0px" |
| android:layout_weight="1"> |
| <include layout="@layout/dialpad_key" android:id="@+id/star"/> |
| <include layout="@layout/dialpad_key" android:id="@+id/zero"/> |
| <include layout="@layout/dialpad_key" android:id="@+id/pound"/> |
| </TableRow> |
| </TableLayout> |