Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3   ~ Copyright (C) 2014 The Android Open Source Project
      4   ~
      5   ~ Licensed under the Apache License, Version 2.0 (the "License");
      6   ~ you may not use this file except in compliance with the License.
      7   ~ You may obtain a copy of the License at
      8   ~
      9   ~      http://www.apache.org/licenses/LICENSE-2.0
     10   ~
     11   ~ Unless required by applicable law or agreed to in writing, software
     12   ~ distributed under the License is distributed on an "AS IS" BASIS,
     13   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     14   ~ See the License for the specific language governing permissions and
     15   ~ limitations under the License
     16   -->
     17 
     18 <com.android.systemui.statusbar.phone.KeyguardBottomAreaView
     19     xmlns:android="http://schemas.android.com/apk/res/android"
     20     xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui"
     21     android:id="@+id/keyguard_bottom_area"
     22     android:layout_height="match_parent"
     23     android:layout_width="match_parent"
     24     android:outlineProvider="none"
     25     android:elevation="5dp" > <!-- Put it above the status bar header -->
     26 
     27     <LinearLayout
     28         android:id="@+id/keyguard_indication_area"
     29         android:forceHasOverlappingRendering="false"
     30         android:layout_width="match_parent"
     31         android:layout_height="wrap_content"
     32         android:layout_marginBottom="@dimen/keyguard_indication_margin_bottom"
     33         android:layout_gravity="bottom|center_horizontal"
     34         android:orientation="vertical">
     35 
     36         <com.android.systemui.statusbar.phone.KeyguardIndicationTextView
     37             android:id="@+id/keyguard_indication_enterprise_disclosure"
     38             android:layout_width="match_parent"
     39             android:layout_height="wrap_content"
     40             android:gravity="center_horizontal"
     41             android:textStyle="italic"
     42             android:textColor="?attr/wallpaperTextColorSecondary"
     43             android:textAppearance="?android:attr/textAppearanceSmall"
     44             android:visibility="gone" />
     45 
     46         <com.android.systemui.statusbar.phone.KeyguardIndicationTextView
     47             android:id="@+id/keyguard_indication_text"
     48             android:layout_width="match_parent"
     49             android:layout_height="wrap_content"
     50             android:gravity="center_horizontal"
     51             android:textStyle="italic"
     52             android:textColor="?attr/wallpaperTextColorSecondary"
     53             android:textAppearance="?android:attr/textAppearanceSmall"
     54             android:accessibilityLiveRegion="polite" />
     55 
     56     </LinearLayout>
     57 
     58     <FrameLayout
     59         android:id="@+id/preview_container"
     60         android:layout_width="match_parent"
     61         android:layout_height="match_parent">
     62     </FrameLayout>
     63 
     64     <com.android.systemui.statusbar.KeyguardAffordanceView
     65         android:id="@+id/camera_button"
     66         android:layout_height="@dimen/keyguard_affordance_height"
     67         android:layout_width="@dimen/keyguard_affordance_width"
     68         android:layout_gravity="bottom|end"
     69         android:src="@drawable/ic_camera_alt_24dp"
     70         android:scaleType="center"
     71         android:contentDescription="@string/accessibility_camera_button"
     72         android:tint="?attr/wallpaperTextColor" />
     73 
     74     <com.android.systemui.statusbar.KeyguardAffordanceView
     75         android:id="@+id/left_button"
     76         android:layout_height="@dimen/keyguard_affordance_height"
     77         android:layout_width="@dimen/keyguard_affordance_width"
     78         android:layout_gravity="bottom|start"
     79         android:src="@drawable/ic_phone_24dp"
     80         android:scaleType="center"
     81         android:contentDescription="@string/accessibility_phone_button"
     82         android:tint="?attr/wallpaperTextColor" />
     83 
     84     <com.android.systemui.statusbar.phone.LockIcon
     85         android:id="@+id/lock_icon"
     86         android:layout_width="@dimen/keyguard_affordance_width"
     87         android:layout_height="@dimen/keyguard_affordance_height"
     88         android:layout_gravity="bottom|center_horizontal"
     89         android:src="@drawable/ic_lock_24dp"
     90         android:contentDescription="@string/accessibility_unlock_button"
     91         android:scaleType="center" />
     92 
     93     <FrameLayout
     94         android:id="@+id/overlay_container"
     95         android:layout_width="match_parent"
     96         android:layout_height="match_parent">
     97 
     98         <include layout="@layout/keyguard_bottom_area_overlay" />
     99 
    100     </FrameLayout>
    101 
    102 </com.android.systemui.statusbar.phone.KeyguardBottomAreaView>
    103