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 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:layout_alignParentEnd="true" 34 android:gravity="center_vertical|end" > 35 <FrameLayout android:id="@+id/system_icons_container" 36 android:layout_width="0dp" 37 android:layout_height="match_parent" 38 android:layout_weight="1" 39 android:layout_marginStart="@dimen/system_icons_super_container_margin_start" 40 android:gravity="center_vertical|end" 41 android:paddingEnd="@dimen/system_icons_keyguard_padding_end" > 42 <include layout="@layout/system_icons" /> 43 </FrameLayout> 44 45 <com.android.systemui.statusbar.phone.MultiUserSwitch android:id="@+id/multi_user_switch" 46 android:layout_width="@dimen/multi_user_switch_width_keyguard" 47 android:layout_height="match_parent" 48 android:background="@drawable/ripple_drawable" 49 android:layout_marginEnd="@dimen/multi_user_switch_keyguard_margin"> 50 <ImageView android:id="@+id/multi_user_avatar" 51 android:layout_width="@dimen/multi_user_avatar_keyguard_size" 52 android:layout_height="@dimen/multi_user_avatar_keyguard_size" 53 android:layout_gravity="center" 54 android:scaleType="centerInside"/> 55 </com.android.systemui.statusbar.phone.MultiUserSwitch> 56 </LinearLayout> 57 58 <Space 59 android:id="@+id/cutout_space_view" 60 android:layout_width="0dp" 61 android:layout_height="match_parent" 62 android:gravity="center" 63 android:visibility="gone" /> 64 65 <com.android.keyguard.CarrierText 66 android:id="@+id/keyguard_carrier_text" 67 android:layout_width="match_parent" 68 android:layout_height="match_parent" 69 android:layout_marginStart="@dimen/keyguard_carrier_text_margin" 70 android:layout_toStartOf="@id/system_icons_container" 71 android:gravity="center_vertical" 72 android:ellipsize="marquee" 73 android:textDirection="locale" 74 android:textAppearance="?android:attr/textAppearanceSmall" 75 android:textColor="?attr/wallpaperTextColorSecondary" 76 android:singleLine="true" /> 77 78 </com.android.systemui.statusbar.phone.KeyguardStatusBarView> 79