Jim Miller | 17e9e19 | 2010-12-07 20:41:41 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2008 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 | --> |
Jim Miller | 17e9e19 | 2010-12-07 20:41:41 -0800 | [diff] [blame] | 16 | <com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient |
Jim Miller | d12b950 | 2011-05-23 16:44:24 -0700 | [diff] [blame] | 17 | xmlns:android="http://schemas.android.com/apk/res/android" |
Jim Miller | 17e9e19 | 2010-12-07 20:41:41 -0800 | [diff] [blame] | 18 | android:id="@+id/topLayout" |
Danielle Millett | aeb199a | 2012-11-21 11:20:10 -0500 | [diff] [blame] | 19 | android:orientation="vertical" |
Jim Miller | 17e9e19 | 2010-12-07 20:41:41 -0800 | [diff] [blame] | 20 | android:layout_width="match_parent" |
Danielle Millett | aeb199a | 2012-11-21 11:20:10 -0500 | [diff] [blame] | 21 | android:layout_height="match_parent" |
| 22 | android:gravity="center_horizontal"> |
Jim Miller | 17e9e19 | 2010-12-07 20:41:41 -0800 | [diff] [blame] | 23 | |
Danielle Millett | aeb199a | 2012-11-21 11:20:10 -0500 | [diff] [blame] | 24 | <!-- header message --> |
| 25 | <ScrollView |
| 26 | android:layout_width="match_parent" |
| 27 | android:layout_height="wrap_content" |
| 28 | android:gravity="center" |
| 29 | android:layout_marginTop="40dip"> |
Jim Miller | 17e9e19 | 2010-12-07 20:41:41 -0800 | [diff] [blame] | 30 | |
Danielle Millett | aeb199a | 2012-11-21 11:20:10 -0500 | [diff] [blame] | 31 | <TextView android:id="@+id/headerText" |
Jim Miller | d12b950 | 2011-05-23 16:44:24 -0700 | [diff] [blame] | 32 | android:layout_width="match_parent" |
| 33 | android:layout_height="wrap_content" |
Danielle Millett | aeb199a | 2012-11-21 11:20:10 -0500 | [diff] [blame] | 34 | android:gravity="center" |
| 35 | android:textAppearance="?android:attr/textAppearanceMedium"/> |
Jim Miller | d12b950 | 2011-05-23 16:44:24 -0700 | [diff] [blame] | 36 | |
Danielle Millett | aeb199a | 2012-11-21 11:20:10 -0500 | [diff] [blame] | 37 | </ScrollView> |
Jim Miller | d12b950 | 2011-05-23 16:44:24 -0700 | [diff] [blame] | 38 | |
Danielle Millett | aeb199a | 2012-11-21 11:20:10 -0500 | [diff] [blame] | 39 | <!-- footer message --> |
| 40 | <TextView android:id="@+id/footerText" |
| 41 | android:layout_width="wrap_content" |
| 42 | android:layout_height="wrap_content" |
| 43 | android:layout_marginTop="16dip" |
| 44 | android:textAppearance="?android:attr/textAppearanceMedium"/> |
Jim Miller | 2e28ace | 2010-12-15 10:07:16 -0800 | [diff] [blame] | 45 | |
Danielle Millett | aeb199a | 2012-11-21 11:20:10 -0500 | [diff] [blame] | 46 | <View |
| 47 | android:layout_width="match_parent" |
| 48 | android:layout_height="0dip" |
| 49 | android:layout_weight="0.6"/> |
| 50 | |
| 51 | <!-- lock pattern widget --> |
| 52 | <com.android.internal.widget.LockPatternView android:id="@+id/lockPattern" |
| 53 | android:layout_width="354dip" |
| 54 | android:layout_height="354dip" |
Amith Yamasani | 9690b19 | 2014-04-22 09:22:40 -0700 | [diff] [blame] | 55 | android:background="@color/lock_pattern_background" |
Danielle Millett | aeb199a | 2012-11-21 11:20:10 -0500 | [diff] [blame] | 56 | aspect="square"/> |
| 57 | |
| 58 | <View |
| 59 | android:layout_width="match_parent" |
| 60 | android:layout_height="0dip" |
| 61 | android:layout_weight="1"/> |
Jim Miller | 17e9e19 | 2010-12-07 20:41:41 -0800 | [diff] [blame] | 62 | |
| 63 | </com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient> |
| 64 | |