The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | /* //device/apps/Settings/res/layout/keyguard.xml |
| 4 | ** |
| 5 | ** Copyright 2007, The Android Open Source Project |
| 6 | ** |
| 7 | ** Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | ** you may not use this file except in compliance with the License. |
| 9 | ** You may obtain a copy of the License at |
| 10 | ** |
| 11 | ** http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | ** |
| 13 | ** Unless required by applicable law or agreed to in writing, software |
| 14 | ** distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | ** See the License for the specific language governing permissions and |
| 17 | ** limitations under the License. |
| 18 | */ |
| 19 | --> |
| 20 | |
| 21 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" style="@style/info_layout"> |
| 22 | <!-- Keyboard Version --> |
| 23 | <LinearLayout style="@style/entry_layout" |
| 24 | android:orientation="vertical"> |
| 25 | |
| 26 | <TextView |
| 27 | android:layout_width="wrap_content" |
| 28 | android:layout_height="wrap_content" |
| 29 | android:text="@string/keyguard_label" /> |
| 30 | |
| 31 | <Spinner android:id="@+id/kg_options" |
| 32 | android:layout_width="fill_parent" |
| 33 | android:layout_height="wrap_content" |
| 34 | android:layout_marginTop="5dip"> |
| 35 | </Spinner> |
| 36 | |
| 37 | <Button android:id="@+id/pw_mod" |
| 38 | android:layout_width="150dip" |
| 39 | android:layout_height="wrap_content" |
| 40 | android:text="@string/keyguard_pw_mod_text" |
| 41 | android:gravity="center_horizontal" /> |
| 42 | |
| 43 | </LinearLayout> |
| 44 | |
| 45 | <LinearLayout style="@style/entry_layout" |
| 46 | android:orientation="vertical" |
| 47 | android:layout_marginTop="20dip" |
| 48 | > |
| 49 | |
| 50 | <TextView |
| 51 | android:layout_width="wrap_content" |
| 52 | android:layout_height="wrap_content" |
| 53 | android:text="@string/keyguard_sim_pin_label" /> |
| 54 | |
| 55 | <Button android:id="@+id/pin_enable" |
| 56 | android:layout_width="150dip" |
| 57 | android:layout_height="wrap_content" |
| 58 | android:gravity="center_horizontal" /> |
| 59 | |
| 60 | <Button android:id="@+id/pin_mod" |
| 61 | android:layout_width="150dip" |
| 62 | android:layout_height="wrap_content" |
| 63 | android:text="@string/keyguard_pin_mod_text" |
| 64 | android:gravity="center_horizontal" /> |
| 65 | |
| 66 | </LinearLayout> |
| 67 | </LinearLayout> |