blob: 0c9380c996d02e7ab8a2030e905daab48b663304 [file] [log] [blame]
Jim Millerdcb3d842012-08-23 19:18:12 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3**
4** Copyright 2012, The Android Open Source Project
5**
6** Licensed under the Apache License, Version 2.0 (the "License")
7** you may not use this file except in compliance with the License.
8** You may obtain a copy of the License at
9**
10** http://www.apache.org/licenses/LICENSE-2.0
11**
12** Unless required by applicable law or agreed to in writing, software
13** distributed under the License is distributed on an "AS IS" BASIS,
14** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15** See the License for the specific language governing permissions and
16** limitations under the License.
17*/
18-->
19
20<!-- This is the screen that shows the 9 circle unlock widget and instructs
21 the user how to unlock their device, or make an emergency call. This
22 is the portrait layout. -->
Jim Miller5ecd8112013-01-09 18:50:26 -080023<com.android.keyguard.KeyguardPatternView
Jim Millerdcb3d842012-08-23 19:18:12 -070024 xmlns:android="http://schemas.android.com/apk/res/android"
Jim Miller5ecd8112013-01-09 18:50:26 -080025 xmlns:androidprv="http://schemas.android.com/apk/res/com.android.keyguard"
Jim Millerdcb3d842012-08-23 19:18:12 -070026 android:id="@+id/keyguard_pattern_view"
Jim Miller57375342012-09-09 15:20:31 -070027 android:orientation="vertical"
Jim Millerdcb3d842012-08-23 19:18:12 -070028 android:layout_width="match_parent"
Jim Miller57375342012-09-09 15:20:31 -070029 android:layout_height="match_parent"
Jim Miller5ecd8112013-01-09 18:50:26 -080030 androidprv:layout_maxWidth="@dimen/keyguard_security_width"
31 androidprv:layout_maxHeight="@dimen/keyguard_security_height"
Svetoslav Ganovc4842c12012-10-31 14:33:32 -070032 android:gravity="center_horizontal"
33 android:contentDescription="@string/keyguard_accessibility_pattern_unlock">
Jim Millerdcb3d842012-08-23 19:18:12 -070034
Jim Miller0ff7f012012-10-11 20:40:01 -070035 <FrameLayout
Jim Miller3af630c2012-09-26 14:29:18 -070036 android:layout_width="match_parent"
Jim Miller0ff7f012012-10-11 20:40:01 -070037 android:layout_height="match_parent">
Jim Miller57375342012-09-09 15:20:31 -070038
Jim Miller0ff7f012012-10-11 20:40:01 -070039 <LinearLayout
Jim Miller3af630c2012-09-26 14:29:18 -070040 android:layout_height="wrap_content"
Jim Miller0ff7f012012-10-11 20:40:01 -070041 android:layout_width="wrap_content"
42 android:orientation="vertical"
43 android:layout_gravity="center">
Jim Miller3af630c2012-09-26 14:29:18 -070044
Chris Wrene1a8eee2012-11-08 12:28:15 -050045 <include layout="@layout/keyguard_message_area"
46 android:layout_width="match_parent"
47 android:layout_height="wrap_content"
48 />
49
Chris Wrenc0ae9e62012-11-05 13:16:31 -050050 <FrameLayout
51 android:id="@+id/keyguard_bouncer_frame"
Jim Miller5ecd8112013-01-09 18:50:26 -080052 android:background="@drawable/kg_bouncer_bg_white"
Chris Wrenc0ae9e62012-11-05 13:16:31 -050053 android:layout_width="match_parent"
54 android:layout_height="0dp"
55 android:layout_weight="1"
56 >
Jim Miller0ff7f012012-10-11 20:40:01 -070057 <com.android.internal.widget.LockPatternView
58 android:id="@+id/lockPatternView"
Chris Wrenc0ae9e62012-11-05 13:16:31 -050059 android:layout_width="match_parent"
60 android:layout_height="match_parent"
Jim Miller0ff7f012012-10-11 20:40:01 -070061 android:layout_weight="1"
62 android:layout_marginEnd="8dip"
63 android:layout_marginBottom="4dip"
64 android:layout_marginStart="8dip"
65 android:layout_gravity="center_horizontal"
Svetoslav Ganovc4842c12012-10-31 14:33:32 -070066 android:gravity="center"
67 android:contentDescription="@string/keyguard_accessibility_pattern_area" />
Chris Wrenc0ae9e62012-11-05 13:16:31 -050068 </FrameLayout>
Jim Miller9e0a2502012-11-07 21:23:32 -080069 <include layout="@layout/keyguard_eca"
Chris Wrenc0ae9e62012-11-05 13:16:31 -050070 android:id="@+id/keyguard_selector_fade_container"
71 android:layout_width="match_parent"
72 android:layout_height="wrap_content"
73 android:orientation="vertical"
74 android:layout_gravity="bottom|center_horizontal"
75 android:gravity="center_horizontal" />
Jim Miller0ff7f012012-10-11 20:40:01 -070076 </LinearLayout>
77 </FrameLayout>
Jim Millerdcb3d842012-08-23 19:18:12 -070078
Jim Miller5ecd8112013-01-09 18:50:26 -080079</com.android.keyguard.KeyguardPatternView>