blob: a090a6f0a2f8cad4b445502b346ca8e1b5bd5a39 [file] [log] [blame]
Jim Miller17e9e192010-12-07 20:41:41 -08001<?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 Miller17e9e192010-12-07 20:41:41 -080016<com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient
Jim Millerd12b9502011-05-23 16:44:24 -070017 xmlns:android="http://schemas.android.com/apk/res/android"
Jim Miller17e9e192010-12-07 20:41:41 -080018 android:id="@+id/topLayout"
Danielle Millettaeb199a2012-11-21 11:20:10 -050019 android:orientation="vertical"
Jim Miller17e9e192010-12-07 20:41:41 -080020 android:layout_width="match_parent"
Danielle Millettaeb199a2012-11-21 11:20:10 -050021 android:layout_height="match_parent"
22 android:gravity="center_horizontal">
Jim Miller17e9e192010-12-07 20:41:41 -080023
Danielle Millettaeb199a2012-11-21 11:20:10 -050024 <!-- 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 Miller17e9e192010-12-07 20:41:41 -080030
Danielle Millettaeb199a2012-11-21 11:20:10 -050031 <TextView android:id="@+id/headerText"
Jim Millerd12b9502011-05-23 16:44:24 -070032 android:layout_width="match_parent"
33 android:layout_height="wrap_content"
Danielle Millettaeb199a2012-11-21 11:20:10 -050034 android:gravity="center"
35 android:textAppearance="?android:attr/textAppearanceMedium"/>
Jim Millerd12b9502011-05-23 16:44:24 -070036
Danielle Millettaeb199a2012-11-21 11:20:10 -050037 </ScrollView>
Jim Millerd12b9502011-05-23 16:44:24 -070038
Danielle Millettaeb199a2012-11-21 11:20:10 -050039 <!-- 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 Miller2e28ace2010-12-15 10:07:16 -080045
Danielle Millettaeb199a2012-11-21 11:20:10 -050046 <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 Yamasani9690b192014-04-22 09:22:40 -070055 android:background="@color/lock_pattern_background"
Danielle Millettaeb199a2012-11-21 11:20:10 -050056 aspect="square"/>
57
58 <View
59 android:layout_width="match_parent"
60 android:layout_height="0dip"
61 android:layout_weight="1"/>
Jim Miller17e9e192010-12-07 20:41:41 -080062
63</com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient>
64