blob: 27d0e46e8bea7e21808d655490d89ed1f8b598cf [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"
Aarthi Balachandercf6ca0c2018-04-10 19:26:45 -070021 android:background="@color/car_card_dark"
Rakesh Iyer33d6ce42017-05-30 11:02:18 -070022 android:visibility="gone">
Rakesh Iyer4d5343e2016-01-14 13:37:15 -080023
Rakesh Iyer33d6ce42017-05-30 11:02:18 -070024 <RelativeLayout
25 android:id="@+id/container"
Aarthi Balachandercf6ca0c2018-04-10 19:26:45 -070026 android:background="@color/car_card_dark"
Rakesh Iyer33d6ce42017-05-30 11:02:18 -070027 android:layout_width="match_parent"
28 android:layout_height="match_parent">
29
Bryan Eyler81454172017-07-19 13:12:21 -070030 <include layout="@layout/car_status_bar_header"
31 android:theme="@android:style/Theme"
32 android:layout_alignParentTop="true"/>
33
Aarthi Balachanderd8bf2492018-03-30 11:15:59 -070034 <RelativeLayout
35 android:id="@+id/fullscreen_user_switcher_container"
Rakesh Iyer33d6ce42017-05-30 11:02:18 -070036 android:layout_width="match_parent"
Aarthi Balachanderd8bf2492018-03-30 11:15:59 -070037 android:layout_height="match_parent"
38 android:layout_marginStart="@dimen/car_margin"
39 android:layout_marginEnd="@dimen/car_margin">
Rakesh Iyer33d6ce42017-05-30 11:02:18 -070040
Aarthi Balachanderd8bf2492018-03-30 11:15:59 -070041 <RelativeLayout
42 android:id="@+id/fullscreen_user_switcher_container_inner"
43 android:layout_width="match_parent"
44 android:layout_height="match_parent"
45 android:layout_marginEnd="@dimen/car_padding_4">
Rakesh Iyer33d6ce42017-05-30 11:02:18 -070046
Aarthi Balachanderd8bf2492018-03-30 11:15:59 -070047 <com.android.systemui.statusbar.car.UserGridRecyclerView
48 android:id="@+id/user_grid"
49 android:layout_width="wrap_content"
50 android:layout_height="wrap_content"
51 android:layout_below="@+id/header"
52 android:scrollbars="vertical"
53 android:scrollbarFadeDuration="0"
54 android:verticalScrollbarPosition="left"
55 android:layout_centerHorizontal="true"
56 android:layout_centerVertical="true"
57 android:layout_alignParentRight="true"/>
58
59 </RelativeLayout>
60
61 </RelativeLayout>
62
Rakesh Iyer33d6ce42017-05-30 11:02:18 -070063 </RelativeLayout>
64</FrameLayout>