blob: 20190b7fff0d4dcf9ccf1db61199d13ef613fcfc [file] [log] [blame]
Fabian Kozynskia48d2d02019-02-27 11:36:02 -05001<!--
2 Copyright (C) 2019 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License
15 -->
16
17<!-- Extends LinearLayout -->
18<com.android.systemui.qs.QSCarrierGroup
19 xmlns:android="http://schemas.android.com/apk/res/android"
20 android:id="@+id/qs_mobile"
21 android:layout_width="0dp"
22 android:layout_height="match_parent"
23 android:layout_weight="1"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050024 android:gravity="end|center_vertical"
25 android:orientation="horizontal">
26
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050027
28 <include
29 layout="@layout/qs_carrier"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050030 android:id="@+id/carrier1"
31 android:layout_weight="1"/>
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050032
33 <View
34 android:id="@+id/qs_carrier_divider1"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050035 android:layout_width="@dimen/qs_header_carrier_separator_width"
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050036 android:layout_height="match_parent"
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050037 android:visibility="gone" />
38
39 <include
40 layout="@layout/qs_carrier"
41 android:id="@+id/carrier2"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050042 android:layout_weight="1"
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050043 android:visibility="gone"/>
44
45 <View
46 android:id="@+id/qs_carrier_divider2"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050047 android:layout_width="@dimen/qs_header_carrier_separator_width"
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050048 android:layout_height="match_parent"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050049 android:layout_weight="1"
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050050 android:visibility="gone" />
51
52 <include
53 layout="@layout/qs_carrier"
54 android:id="@+id/carrier3"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050055 android:layout_weight="1"
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050056 android:visibility="gone"/>
57
58</com.android.systemui.qs.QSCarrierGroup>