• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!--
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"
24    android:gravity="end|center_vertical"
25    android:orientation="horizontal">
26
27
28    <include
29        layout="@layout/qs_carrier"
30        android:id="@+id/carrier1"
31        android:layout_weight="1"/>
32
33    <View
34        android:id="@+id/qs_carrier_divider1"
35        android:layout_width="@dimen/qs_header_carrier_separator_width"
36        android:layout_height="match_parent"
37        android:visibility="gone"
38        android:importantForAccessibility="no"/>
39
40    <include
41        layout="@layout/qs_carrier"
42        android:id="@+id/carrier2"
43        android:layout_weight="1"
44        android:visibility="gone"/>
45
46    <View
47        android:id="@+id/qs_carrier_divider2"
48        android:layout_width="@dimen/qs_header_carrier_separator_width"
49        android:layout_height="match_parent"
50        android:layout_weight="1"
51        android:visibility="gone"
52        android:importantForAccessibility="no"/>
53
54    <include
55        layout="@layout/qs_carrier"
56        android:id="@+id/carrier3"
57        android:layout_weight="1"
58        android:visibility="gone"/>
59
60</com.android.systemui.qs.QSCarrierGroup>