blob: 007070e3ffba8a6950c748d6d6d93f8f52ecf7a1 [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"
Amin Shaikh9cac3382018-04-11 17:10:07 -040027 android:paddingStart="@dimen/status_bar_padding_start"
Amin Shaikh50d2d1e2018-04-25 14:48:13 -040028 android:paddingEnd="@dimen/status_bar_padding_end" >
Anthony Chen54daefe2017-04-07 17:19:54 -070029
Anthony Chen54daefe2017-04-07 17:19:54 -070030 <com.android.systemui.statusbar.policy.Clock
31 android:id="@+id/clock"
Anthony Chen54daefe2017-04-07 17:19:54 -070032 android:layout_width="wrap_content"
33 android:layout_height="match_parent"
Amin Shaikh39bdc502018-05-15 23:43:34 -040034 android:minWidth="48dp"
Rohan Shahcc3d1d82018-03-30 21:24:17 +000035 android:gravity="center_vertical|start"
Evan Laird2cf56822017-12-18 11:22:39 -050036 android:paddingStart="@dimen/status_bar_left_clock_starting_padding"
37 android:paddingEnd="@dimen/status_bar_left_clock_end_padding"
Rohan Shahcc3d1d82018-03-30 21:24:17 +000038 android:singleLine="true"
39 android:textAppearance="@style/TextAppearance.StatusBar.Clock"
40 systemui:showDark="false" />
Evan Laird2cf56822017-12-18 11:22:39 -050041
42 <android.widget.Space
43 android:id="@+id/space"
44 android:layout_width="0dp"
45 android:layout_height="match_parent"
46 android:layout_weight="1"
Rohan Shahcc3d1d82018-03-30 21:24:17 +000047 android:gravity="center_vertical|center_horizontal" />
Evan Laird2cf56822017-12-18 11:22:39 -050048
Fabian Kozynski12638242018-10-12 15:33:41 -040049 <include layout="@layout/ongoing_privacy_chip" />
50
Rohan Shahcc3d1d82018-03-30 21:24:17 +000051 <com.android.systemui.BatteryMeterView
52 android:id="@+id/battery"
Evan Laird2cf56822017-12-18 11:22:39 -050053 android:layout_height="match_parent"
54 android:layout_width="wrap_content"
Rohan Shahcc3d1d82018-03-30 21:24:17 +000055 android:gravity="center_vertical|end" />
Anthony Chen54daefe2017-04-07 17:19:54 -070056</LinearLayout>