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/com.android.systemui"
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    >
27
28    <com.android.systemui.statusbar.phone.MultiUserSwitch android:id="@+id/multi_user_switch"
29        android:layout_width="@dimen/multi_user_switch_width_keyguard"
30        android:layout_height="match_parent"
31        android:layout_alignParentEnd="true"
32        android:background="@drawable/ripple_drawable"
33        android:layout_marginEnd="@dimen/multi_user_switch_keyguard_margin">
34        <ImageView android:id="@+id/multi_user_avatar"
35            android:layout_width="@dimen/multi_user_avatar_keyguard_size"
36            android:layout_height="@dimen/multi_user_avatar_keyguard_size"
37            android:layout_gravity="center"
38            android:scaleType="centerInside"/>
39    </com.android.systemui.statusbar.phone.MultiUserSwitch>
40
41    <LinearLayout android:id="@+id/system_icons_super_container"
42        android:layout_width="wrap_content"
43        android:layout_height="@dimen/status_bar_header_height"
44        android:layout_toStartOf="@id/multi_user_switch"
45        android:layout_alignWithParentIfMissing="true"
46        android:layout_marginStart="@dimen/system_icons_super_container_margin_start"
47        android:paddingEnd="@dimen/system_icons_keyguard_padding_end">
48        <FrameLayout android:id="@+id/system_icons_container"
49            android:layout_width="wrap_content"
50            android:layout_height="@dimen/status_bar_height"
51            android:layout_gravity="center_vertical"
52            >
53            <include layout="@layout/system_icons" />
54        </FrameLayout>
55    </LinearLayout>
56
57    <com.android.keyguard.CarrierText
58        android:id="@+id/keyguard_carrier_text"
59        android:layout_width="match_parent"
60        android:layout_height="match_parent"
61        android:layout_marginStart="@dimen/keyguard_carrier_text_margin"
62        android:layout_toStartOf="@id/system_icons_super_container"
63        android:gravity="center_vertical"
64        android:ellipsize="marquee"
65        android:textAppearance="?android:attr/textAppearanceSmall"
66        android:textColor="#ffffff"
67        android:singleLine="true" />
68
69</com.android.systemui.statusbar.phone.KeyguardStatusBarView>
70