blob: cd9f780ca2492f5ac9681f128c1d2c777b816c7c [file] [log] [blame]
Anthony Chen54daefe2017-04-07 17:19:54 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3** Copyright 2017, 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<LinearLayout
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 xmlns:systemui="http://schemas.android.com/apk/res-auto"
Evan Laird39254d42018-01-18 16:05:30 -050020 android:id="@+id/quick_status_bar_system_icons"
Anthony Chen54daefe2017-04-07 17:19:54 -070021 android:layout_width="match_parent"
Evan Laird19bf52c2018-01-24 19:54:58 -050022 android:layout_height="@*android:dimen/quick_qs_offset_height"
Anthony Chen54daefe2017-04-07 17:19:54 -070023 android:clipChildren="false"
24 android:clipToPadding="false"
25 android:gravity="center"
Amin Shaikh50d2d1e2018-04-25 14:48:13 -040026 android:orientation="horizontal"
Fabian Kozynski9a15b7c2019-01-10 11:13:27 -050027 android:clickable="true"
Amin Shaikh9cac3382018-04-11 17:10:07 -040028 android:paddingStart="@dimen/status_bar_padding_start"
Amin Shaikh50d2d1e2018-04-25 14:48:13 -040029 android:paddingEnd="@dimen/status_bar_padding_end" >
Anthony Chen54daefe2017-04-07 17:19:54 -070030
Fabian Kozynski8d06c712018-11-07 10:33:02 -050031 <LinearLayout
32 android:layout_width="0dp"
33 android:layout_height="match_parent"
34 android:layout_weight="1"
35 android:orientation="horizontal"
36 android:gravity="center_vertical|start" >
37
Anthony Chen54daefe2017-04-07 17:19:54 -070038 <com.android.systemui.statusbar.policy.Clock
39 android:id="@+id/clock"
Anthony Chen54daefe2017-04-07 17:19:54 -070040 android:layout_width="wrap_content"
41 android:layout_height="match_parent"
Amin Shaikh39bdc502018-05-15 23:43:34 -040042 android:minWidth="48dp"
Rohan Shahcc3d1d82018-03-30 21:24:17 +000043 android:gravity="center_vertical|start"
Evan Laird2cf56822017-12-18 11:22:39 -050044 android:paddingStart="@dimen/status_bar_left_clock_starting_padding"
45 android:paddingEnd="@dimen/status_bar_left_clock_end_padding"
Rohan Shahcc3d1d82018-03-30 21:24:17 +000046 android:singleLine="true"
47 android:textAppearance="@style/TextAppearance.StatusBar.Clock"
48 systemui:showDark="false" />
Fabian Kozynski8d06c712018-11-07 10:33:02 -050049 </LinearLayout>
Evan Laird2cf56822017-12-18 11:22:39 -050050
51 <android.widget.Space
52 android:id="@+id/space"
53 android:layout_width="0dp"
54 android:layout_height="match_parent"
Fabian Kozynski8d06c712018-11-07 10:33:02 -050055 android:layout_gravity="center_vertical|center_horizontal"
56 android:visibility="gone" />
57
58 <LinearLayout
59 android:layout_width="0dp"
60 android:layout_height="match_parent"
Evan Laird2cf56822017-12-18 11:22:39 -050061 android:layout_weight="1"
Fabian Kozynski8d06c712018-11-07 10:33:02 -050062 android:orientation="horizontal"
Fabian Kozynskief124492018-11-02 11:02:11 -040063 android:gravity="center_vertical|end" >
Evan Laird2cf56822017-12-18 11:22:39 -050064
Fabian Kozynski12638242018-10-12 15:33:41 -040065 <include layout="@layout/ongoing_privacy_chip" />
66
Fabian Kozynski8d06c712018-11-07 10:33:02 -050067 </LinearLayout>
Anthony Chen54daefe2017-04-07 17:19:54 -070068</LinearLayout>