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    >
25
26    <com.android.systemui.statusbar.phone.KeyguardIndicationTextView
27        android:id="@+id/keyguard_indication_text"
28        android:layout_width="wrap_content"
29        android:layout_height="wrap_content"
30        android:layout_marginBottom="@dimen/keyguard_indication_margin_bottom"
31        android:layout_gravity="bottom|center_horizontal"
32        android:gravity="center_horizontal"
33        android:textStyle="italic"
34        android:textColor="#ffffff"
35        android:textAppearance="?android:attr/textAppearanceSmall" />
36
37    <FrameLayout
38        android:id="@+id/preview_container"
39        android:layout_width="match_parent"
40        android:layout_height="match_parent">
41    </FrameLayout>
42
43    <com.android.systemui.statusbar.KeyguardAffordanceView
44        android:id="@+id/camera_button"
45        android:layout_height="@dimen/keyguard_affordance_height"
46        android:layout_width="@dimen/keyguard_affordance_width"
47        android:layout_gravity="bottom|end"
48        android:tint="#ffffffff"
49        android:src="@drawable/ic_camera_alt_24dp"
50        android:scaleType="center"
51        android:contentDescription="@string/accessibility_camera_button" />
52
53    <com.android.systemui.statusbar.KeyguardAffordanceView
54        android:id="@+id/phone_button"
55        android:layout_height="@dimen/keyguard_affordance_height"
56        android:layout_width="@dimen/keyguard_affordance_width"
57        android:layout_gravity="bottom|start"
58        android:tint="#ffffffff"
59        android:src="@drawable/ic_phone_24dp"
60        android:scaleType="center"
61        android:contentDescription="@string/accessibility_phone_button" />
62
63    <com.android.systemui.statusbar.KeyguardAffordanceView
64        android:id="@+id/lock_icon"
65        android:layout_width="@dimen/keyguard_affordance_width"
66        android:layout_height="@dimen/keyguard_affordance_height"
67        android:layout_gravity="bottom|center_horizontal"
68        android:src="@drawable/ic_lock_24dp"
69        android:scaleType="center"
70        android:tint="#ffffffff"
71        android:contentDescription="@string/accessibility_unlock_button" />
72
73</com.android.systemui.statusbar.phone.KeyguardBottomAreaView>
74