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<!-- Extends RelativeLayout -->
19<com.android.systemui.statusbar.phone.KeyguardStatusBarView
20    xmlns:android="http://schemas.android.com/apk/res/android"
21    xmlns:systemui="http://schemas.android.com/apk/res-auto"
22    android:id="@+id/keyguard_header"
23    android:layout_width="match_parent"
24    android:layout_height="@dimen/status_bar_header_height_keyguard"
25    android:baselineAligned="false"
26    android:gravity="center_vertical"
27    >
28
29    <LinearLayout
30        android:id="@+id/status_icon_area"
31        android:layout_width="wrap_content"
32        android:layout_height="match_parent"
33        android:paddingTop="@dimen/status_bar_padding_top"
34        android:layout_alignParentEnd="true"
35        android:gravity="center_vertical|end" >
36        <FrameLayout android:id="@+id/system_icons_container"
37            android:layout_width="0dp"
38            android:layout_height="match_parent"
39            android:layout_weight="1"
40            android:layout_marginStart="@dimen/system_icons_super_container_margin_start"
41            android:layout_marginEnd="@dimen/status_bar_padding_end"
42            android:gravity="center_vertical|end">
43            <include layout="@layout/system_icons" />
44        </FrameLayout>
45
46        <ImageView android:id="@+id/multi_user_avatar"
47            android:layout_width="@dimen/multi_user_avatar_keyguard_size"
48            android:layout_height="@dimen/multi_user_avatar_keyguard_size"
49            android:layout_gravity="center"
50            android:scaleType="centerInside"/>
51    </LinearLayout>
52
53    <Space
54        android:id="@+id/cutout_space_view"
55        android:layout_width="0dp"
56        android:layout_height="match_parent"
57        android:gravity="center"
58        android:visibility="gone" />
59
60    <com.android.keyguard.CarrierText
61        android:id="@+id/keyguard_carrier_text"
62        android:layout_width="match_parent"
63        android:layout_height="match_parent"
64        android:paddingTop="@dimen/status_bar_padding_top"
65        android:layout_marginStart="@dimen/keyguard_carrier_text_margin"
66        android:layout_toStartOf="@id/system_icons_container"
67        android:gravity="center_vertical"
68        android:ellipsize="marquee"
69        android:textDirection="locale"
70        android:textAppearance="@style/TextAppearance.StatusBar.Clock"
71        android:textColor="?attr/wallpaperTextColorSecondary"
72        android:singleLine="true"
73        systemui:showMissingSim="true"
74        systemui:showAirplaneMode="true" />
75
76</com.android.systemui.statusbar.phone.KeyguardStatusBarView>
77