The Android Open Source Project | 5dc3b4f | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2006 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 | <com.android.contacts.ButtonGridLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 18 | android:id="@+id/dialpad" |
| 19 | android:paddingLeft="16px" |
| 20 | android:paddingRight="16px" |
| 21 | android:layout_width="fill_parent" |
| 22 | android:layout_height="wrap_content" |
| 23 | > |
| 24 | <ImageButton android:id="@+id/one" |
| 25 | android:layout_width="96px" |
| 26 | android:layout_height="76px" |
| 27 | android:src="@drawable/dial_num_1" |
| 28 | android:background="@drawable/btn_dial" |
| 29 | android:soundEffectsEnabled="false" |
| 30 | /> |
| 31 | |
| 32 | <ImageButton android:id="@+id/two" |
| 33 | android:layout_width="96px" |
| 34 | android:layout_height="76px" |
| 35 | android:src="@drawable/dial_num_2" |
| 36 | android:background="@drawable/btn_dial" |
| 37 | android:soundEffectsEnabled="false" |
| 38 | /> |
| 39 | |
| 40 | <ImageButton android:id="@+id/three" |
| 41 | android:layout_width="96px" |
| 42 | android:layout_height="76px" |
| 43 | android:src="@drawable/dial_num_3" |
| 44 | android:background="@drawable/btn_dial" |
| 45 | android:soundEffectsEnabled="false" |
| 46 | /> |
| 47 | |
| 48 | <ImageButton android:id="@+id/four" |
| 49 | android:layout_width="96px" |
| 50 | android:layout_height="76px" |
| 51 | android:src="@drawable/dial_num_4" |
| 52 | android:background="@drawable/btn_dial" |
| 53 | android:soundEffectsEnabled="false" |
| 54 | /> |
| 55 | |
| 56 | <ImageButton android:id="@+id/five" |
| 57 | android:layout_width="96px" |
| 58 | android:layout_height="76px" |
| 59 | android:src="@drawable/dial_num_5" |
| 60 | android:background="@drawable/btn_dial" |
| 61 | android:soundEffectsEnabled="false" |
| 62 | /> |
| 63 | |
| 64 | <ImageButton android:id="@+id/six" |
| 65 | android:layout_width="96px" |
| 66 | android:layout_height="76px" |
| 67 | android:src="@drawable/dial_num_6" |
| 68 | android:background="@drawable/btn_dial" |
| 69 | android:soundEffectsEnabled="false" |
| 70 | /> |
| 71 | |
| 72 | <ImageButton android:id="@+id/seven" |
| 73 | android:layout_width="96px" |
| 74 | android:layout_height="76px" |
| 75 | android:src="@drawable/dial_num_7" |
| 76 | android:background="@drawable/btn_dial" |
| 77 | android:soundEffectsEnabled="false" |
| 78 | /> |
| 79 | |
| 80 | <ImageButton android:id="@+id/eight" |
| 81 | android:layout_width="96px" |
| 82 | android:layout_height="76px" |
| 83 | android:src="@drawable/dial_num_8" |
| 84 | android:background="@drawable/btn_dial" |
| 85 | android:soundEffectsEnabled="false" |
| 86 | /> |
| 87 | |
| 88 | <ImageButton android:id="@+id/nine" |
| 89 | android:layout_width="96px" |
| 90 | android:layout_height="76px" |
| 91 | android:src="@drawable/dial_num_9" |
| 92 | android:background="@drawable/btn_dial" |
| 93 | android:soundEffectsEnabled="false" |
| 94 | /> |
| 95 | |
| 96 | <ImageButton android:id="@+id/star" |
| 97 | android:layout_width="96px" |
| 98 | android:layout_height="76px" |
| 99 | android:src="@drawable/dial_num_star" |
| 100 | android:background="@drawable/btn_dial" |
| 101 | android:soundEffectsEnabled="false" |
| 102 | /> |
| 103 | |
| 104 | <ImageButton android:id="@+id/zero" |
| 105 | android:layout_width="96px" |
| 106 | android:layout_height="76px" |
| 107 | android:src="@drawable/dial_num_0" |
| 108 | android:background="@drawable/btn_dial" |
| 109 | android:soundEffectsEnabled="false" |
| 110 | /> |
| 111 | |
| 112 | <ImageButton android:id="@+id/pound" |
| 113 | android:layout_width="96px" |
| 114 | android:layout_height="76px" |
| 115 | android:src="@drawable/dial_num_pound" |
| 116 | android:background="@drawable/btn_dial" |
| 117 | android:soundEffectsEnabled="false" |
| 118 | /> |
| 119 | </com.android.contacts.ButtonGridLayout> |