Home | History | Annotate | Download | only in layout
      1 <?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 allows the user to unlock by showing their face.  -->
     21 <com.android.keyguard.KeyguardFaceUnlockView
     22     xmlns:android="http://schemas.android.com/apk/res/android"
     23     xmlns:androidprv="http://schemas.android.com/apk/res-auto"
     24     android:id="@+id/keyguard_face_unlock_view"
     25     android:orientation="vertical"
     26     android:layout_width="match_parent"
     27     android:layout_height="match_parent"
     28     androidprv:layout_maxWidth="@dimen/keyguard_security_width"
     29     androidprv:layout_maxHeight="@dimen/keyguard_security_height"
     30     android:contentDescription="@string/keyguard_accessibility_face_unlock">
     31 
     32     <include layout="@layout/keyguard_message_area"
     33         android:layout_width="match_parent"
     34         android:layout_height="wrap_content"
     35         />
     36 
     37     <FrameLayout
     38        android:id="@+id/keyguard_bouncer_frame"
     39        android:layout_width="match_parent"
     40        android:layout_height="0dp"
     41        android:layout_weight="1"
     42        >
     43        <com.android.internal.widget.FaceUnlockView
     44            android:id="@+id/face_unlock_area_view"
     45            android:layout_width="match_parent"
     46            android:layout_height="match_parent"
     47            android:layout_gravity="center_horizontal"
     48            android:background="@drawable/intro_bg"
     49            android:gravity="center">
     50 
     51            <View
     52                android:id="@+id/spotlightMask"
     53                android:layout_width="match_parent"
     54                android:layout_height="match_parent"
     55                android:background="@color/facelock_spotlight_mask"
     56            />
     57 
     58            <ImageButton
     59                android:id="@+id/face_unlock_cancel_button"
     60                android:layout_width="wrap_content"
     61                android:layout_height="wrap_content"
     62                android:padding="5dip"
     63                android:layout_alignParentTop="true"
     64                android:layout_alignParentEnd="true"
     65                android:background="#00000000"
     66                android:src="@drawable/ic_facial_backup"
     67            />
     68        </com.android.internal.widget.FaceUnlockView>
     69     </FrameLayout>
     70 
     71     <include layout="@layout/keyguard_eca"
     72         android:id="@+id/keyguard_selector_fade_container"
     73         android:layout_width="match_parent"
     74         android:layout_height="wrap_content"
     75         android:orientation="vertical"
     76         android:layout_gravity="bottom|center_horizontal"
     77         android:gravity="center_horizontal" />
     78 </com.android.keyguard.KeyguardFaceUnlockView>
     79