blob: 936f73be56750a078925bc04ccef754619561b15 [file] [log] [blame]
Jorim Jaggia6310292014-04-16 14:11:52 +02001<?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 >
Jorim Jaggi97b63c42014-05-02 23:03:34 +020025 <com.android.systemui.statusbar.phone.SwipeAffordanceView
Jorim Jaggia6310292014-04-16 14:11:52 +020026 android:id="@+id/camera_button"
Jorim Jaggi97b63c42014-05-02 23:03:34 +020027 android:layout_height="64dp"
28 android:layout_width="64dp"
29 android:layout_gravity="bottom|end"
30 android:tint="#ffffffff"
31 android:src="@drawable/ic_camera_alt_24dp"
Jorim Jaggia6310292014-04-16 14:11:52 +020032 android:scaleType="center"
33 android:contentDescription="@string/accessibility_camera_button"
Jorim Jaggi97b63c42014-05-02 23:03:34 +020034 systemui:swipeDirection="start"/>
35
36 <com.android.systemui.statusbar.phone.SwipeAffordanceView
37 android:id="@+id/phone_button"
38 android:layout_height="64dp"
39 android:layout_width="64dp"
40 android:layout_gravity="bottom|start"
41 android:tint="#ffffffff"
42 android:src="@drawable/ic_phone_24dp"
43 android:scaleType="center"
44 android:contentDescription="@string/accessibility_phone_button"
Jorim Jaggi97b63c42014-05-02 23:03:34 +020045 systemui:swipeDirection="end"/>
Jorim Jaggie70d31f2014-04-24 22:08:30 +020046
47 <com.android.systemui.statusbar.phone.KeyguardIndicationTextView
48 android:id="@+id/keyguard_indication_text"
49 android:layout_width="wrap_content"
50 android:layout_height="wrap_content"
51 android:layout_marginBottom="100dp"
52 android:layout_gravity="bottom|center_horizontal"
53 android:textStyle="italic"
Jorim Jaggicc12a9d2014-05-26 01:55:29 +020054 android:textColor="#ffffff"
55 android:textAppearance="?android:attr/textAppearanceSmall"/>
Jorim Jaggie70d31f2014-04-24 22:08:30 +020056
Jorim Jaggi47a7b072014-05-07 22:10:17 +020057 <ImageView
Adrian Roos2fe592d2014-05-17 03:11:59 +020058 android:id="@+id/lock_icon"
Jorim Jaggi47a7b072014-05-07 22:10:17 +020059 android:layout_width="64dp"
60 android:layout_height="64dp"
61 android:layout_gravity="bottom|center_horizontal"
62 android:src="@drawable/ic_lock_24dp"
63 android:scaleType="center"
64 android:alpha="0.7"
65 android:layerType="hardware"
66 android:tint="#ffffffff"/>
67
Adrian Roos41b170d2014-05-26 20:54:12 +000068</com.android.systemui.statusbar.phone.KeyguardBottomAreaView>