blob: 22452b74b61fb676886608346f960a2112e9ae3c [file] [log] [blame]
Rakesh Iyer4d5343e2016-01-14 13:37:15 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2015 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-->
Rakesh Iyer33d6ce42017-05-30 11:02:18 -070017<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:fitsSystemWindows="true"
19 android:layout_width="match_parent"
20 android:layout_height="match_parent"
21 android:background="@android:color/black"
22 android:visibility="gone">
Rakesh Iyer4d5343e2016-01-14 13:37:15 -080023
Rakesh Iyer33d6ce42017-05-30 11:02:18 -070024 <!-- This progressbar is activated while we're switching users. -->
Rakesh Iyer97ff8582017-05-22 17:47:52 -070025 <ProgressBar
Rakesh Iyer33d6ce42017-05-30 11:02:18 -070026 android:id="@+id/switching_users"
Rakesh Iyer97ff8582017-05-22 17:47:52 -070027 android:layout_width="wrap_content"
Rakesh Iyer33d6ce42017-05-30 11:02:18 -070028 android:layout_height="wrap_content"
29 android:indeterminate="true"
30 android:visibility="gone"
31 android:layout_gravity="center" />
32
33 <RelativeLayout
34 android:id="@+id/container"
35 android:layout_width="match_parent"
36 android:layout_height="match_parent">
37
Bryan Eyler81454172017-07-19 13:12:21 -070038 <include layout="@layout/car_status_bar_header"
39 android:theme="@android:style/Theme"
40 android:layout_alignParentTop="true"/>
41
Aarthi Balachanderd8bf2492018-03-30 11:15:59 -070042 <RelativeLayout
43 android:id="@+id/fullscreen_user_switcher_container"
Rakesh Iyer33d6ce42017-05-30 11:02:18 -070044 android:layout_width="match_parent"
Aarthi Balachanderd8bf2492018-03-30 11:15:59 -070045 android:layout_height="match_parent"
46 android:layout_marginStart="@dimen/car_margin"
47 android:layout_marginEnd="@dimen/car_margin">
Rakesh Iyer33d6ce42017-05-30 11:02:18 -070048
Aarthi Balachanderd8bf2492018-03-30 11:15:59 -070049 <RelativeLayout
50 android:id="@+id/fullscreen_user_switcher_container_inner"
51 android:layout_width="match_parent"
52 android:layout_height="match_parent"
53 android:layout_marginEnd="@dimen/car_padding_4">
Rakesh Iyer33d6ce42017-05-30 11:02:18 -070054
Aarthi Balachanderd8bf2492018-03-30 11:15:59 -070055 <com.android.systemui.statusbar.car.UserGridRecyclerView
56 android:id="@+id/user_grid"
57 android:layout_width="wrap_content"
58 android:layout_height="wrap_content"
59 android:layout_below="@+id/header"
60 android:scrollbars="vertical"
61 android:scrollbarFadeDuration="0"
62 android:verticalScrollbarPosition="left"
63 android:layout_centerHorizontal="true"
64 android:layout_centerVertical="true"
65 android:layout_alignParentRight="true"/>
66
67 </RelativeLayout>
68
69 </RelativeLayout>
70
Rakesh Iyer33d6ce42017-05-30 11:02:18 -070071 </RelativeLayout>
72</FrameLayout>