blob: 36f382b19f4a58d4d33c7c560329d20ec8fb9be8 [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 Kozynskic7bc84b2019-03-11 13:57:31 -040037 android:visibility="gone"
38 android:importantForAccessibility="no"/>
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050039
40 <include
41 layout="@layout/qs_carrier"
42 android:id="@+id/carrier2"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050043 android:layout_weight="1"
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050044 android:visibility="gone"/>
45
46 <View
47 android:id="@+id/qs_carrier_divider2"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050048 android:layout_width="@dimen/qs_header_carrier_separator_width"
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050049 android:layout_height="match_parent"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050050 android:layout_weight="1"
Fabian Kozynskic7bc84b2019-03-11 13:57:31 -040051 android:visibility="gone"
52 android:importantForAccessibility="no"/>
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050053
54 <include
55 layout="@layout/qs_carrier"
56 android:id="@+id/carrier3"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050057 android:layout_weight="1"
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050058 android:visibility="gone"/>
59
60</com.android.systemui.qs.QSCarrierGroup>