blob: 94c68a5870e64dc08e5472c2ab2fd638a433a130 [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
Jim Miller5830cb22012-09-05 18:54:18 -070020<!-- This is the screen that allows the user to unlock by showing their face. -->
Jim Miller5ecd8112013-01-09 18:50:26 -080021<com.android.keyguard.KeyguardFaceUnlockView
Jim Millerdcb3d842012-08-23 19:18:12 -070022 xmlns:android="http://schemas.android.com/apk/res/android"
Jim Miller5ecd8112013-01-09 18:50:26 -080023 xmlns:androidprv="http://schemas.android.com/apk/res/com.android.keyguard"
Jim Millerdcb3d842012-08-23 19:18:12 -070024 android:id="@+id/keyguard_face_unlock_view"
Jim Miller000464a2012-09-04 16:45:06 -070025 android:orientation="vertical"
Jim Millerdcb3d842012-08-23 19:18:12 -070026 android:layout_width="match_parent"
Svetoslav Ganovc4842c12012-10-31 14:33:32 -070027 android:layout_height="match_parent"
Jim Miller5ecd8112013-01-09 18:50:26 -080028 androidprv:layout_maxWidth="@dimen/keyguard_security_width"
29 androidprv:layout_maxHeight="@dimen/keyguard_security_height"
Svetoslav Ganovc4842c12012-10-31 14:33:32 -070030 android:contentDescription="@string/keyguard_accessibility_face_unlock">
Jim Millerdcb3d842012-08-23 19:18:12 -070031
Jim Miller0b728242012-10-28 19:42:30 -070032 <include layout="@layout/keyguard_message_area"
33 android:layout_width="match_parent"
34 android:layout_height="wrap_content"
35 />
Jim Miller000464a2012-09-04 16:45:06 -070036
Chris Wrenc0ae9e62012-11-05 13:16:31 -050037 <FrameLayout
38 android:id="@+id/keyguard_bouncer_frame"
Jim Miller5ecd8112013-01-09 18:50:26 -080039 android:background="@drawable/kg_bouncer_bg_white"
Chris Wrenc0ae9e62012-11-05 13:16:31 -050040 android:layout_width="match_parent"
41 android:layout_height="0dp"
42 android:layout_weight="1"
43 >
44 <com.android.internal.widget.FaceUnlockView
45 android:id="@+id/face_unlock_area_view"
46 android:layout_width="match_parent"
47 android:layout_height="match_parent"
Brian Colonna27501672012-11-07 11:53:49 -050048 android:layout_gravity="center_horizontal"
Jim Miller5ecd8112013-01-09 18:50:26 -080049 android:background="@drawable/intro_bg"
Chris Wrenc0ae9e62012-11-05 13:16:31 -050050 android:gravity="center">
Jim Miller000464a2012-09-04 16:45:06 -070051
Chris Wrenc0ae9e62012-11-05 13:16:31 -050052 <View
53 android:id="@+id/spotlightMask"
54 android:layout_width="match_parent"
55 android:layout_height="match_parent"
Jim Miller5ecd8112013-01-09 18:50:26 -080056 android:background="@color/facelock_spotlight_mask"
Chris Wrenc0ae9e62012-11-05 13:16:31 -050057 />
Jim Miller000464a2012-09-04 16:45:06 -070058
Chris Wrenc0ae9e62012-11-05 13:16:31 -050059 <ImageButton
60 android:id="@+id/face_unlock_cancel_button"
61 android:layout_width="wrap_content"
62 android:layout_height="wrap_content"
63 android:padding="5dip"
64 android:layout_alignParentTop="true"
65 android:layout_alignParentEnd="true"
66 android:background="#00000000"
Jim Miller5ecd8112013-01-09 18:50:26 -080067 android:src="@drawable/ic_facial_backup"
Chris Wrenc0ae9e62012-11-05 13:16:31 -050068 />
69 </com.android.internal.widget.FaceUnlockView>
70 </FrameLayout>
Jim Millerdcb3d842012-08-23 19:18:12 -070071
Jim Miller9e0a2502012-11-07 21:23:32 -080072 <include layout="@layout/keyguard_eca"
Jim Miller0ff7f012012-10-11 20:40:01 -070073 android:id="@+id/keyguard_selector_fade_container"
74 android:layout_width="match_parent"
75 android:layout_height="wrap_content"
76 android:orientation="vertical"
77 android:layout_gravity="bottom|center_horizontal"
78 android:gravity="center_horizontal" />
Jim Miller5ecd8112013-01-09 18:50:26 -080079</com.android.keyguard.KeyguardFaceUnlockView>