blob: 6edccbabb82367b298cfe78a75a2ef2d283d3cb9 [file] [log] [blame]
Fabian Kozynski1823f112019-01-18 11:43:29 -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
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050017<com.android.systemui.qs.QSCarrier
Fabian Kozynski1823f112019-01-18 11:43:29 -050018 xmlns:android="http://schemas.android.com/apk/res/android"
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050019 android:id="@+id/linear_carrier"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050020 android:layout_width="wrap_content"
Fabian Kozynski1823f112019-01-18 11:43:29 -050021 android:layout_height="match_parent"
22 android:orientation="horizontal"
Fabian Kozynski1823f112019-01-18 11:43:29 -050023 android:gravity="center_vertical|start"
24 android:background="@android:color/transparent"
25 android:clickable="false"
26 android:clipChildren="false"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050027 android:clipToPadding="false" >
Fabian Kozynski1823f112019-01-18 11:43:29 -050028
29 <include
30 layout="@layout/mobile_signal_group"
31 android:layout_width="wrap_content"
32 android:layout_height="wrap_content"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050033 android:layout_marginEnd="@dimen/qs_carrier_margin_width"
Fabian Kozynski1823f112019-01-18 11:43:29 -050034 android:visibility="gone" />
35
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050036 <view class="com.android.systemui.qs.QSCarrier$QSCarrierText"
Fabian Kozynski1823f112019-01-18 11:43:29 -050037 android:id="@+id/qs_carrier_text"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050038 android:layout_width="wrap_content"
Fabian Kozynski1823f112019-01-18 11:43:29 -050039 android:layout_height="wrap_content"
40 android:layout_weight="1"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050041 android:textAppearance="@style/TextAppearance.QS.Status"
Fabian Kozynski1823f112019-01-18 11:43:29 -050042 android:textDirection="locale"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050043 android:singleLine="true"
44 android:maxEms="7"/>
Fabian Kozynski1823f112019-01-18 11:43:29 -050045
Fabian Kozynskia48d2d02019-02-27 11:36:02 -050046</com.android.systemui.qs.QSCarrier>