blob: 0fed393a7ed3b10f22419d0328b48d55715c62d0 [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
Fabián Kozynskic3fa7472023-04-04 14:01:09 -040017<com.android.systemui.shade.carrier.ShadeCarrier
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"
Fabian Kozynskib1aee812019-04-04 14:17:48 -040022 android:minWidth="48dp"
Fabian Kozynski1823f112019-01-18 11:43:29 -050023 android:orientation="horizontal"
Fabian Kozynski1823f112019-01-18 11:43:29 -050024 android:gravity="center_vertical|start"
25 android:background="@android:color/transparent"
26 android:clickable="false"
27 android:clipChildren="false"
Fabian Kozynskic7bc84b2019-03-11 13:57:31 -040028 android:clipToPadding="false"
29 android:focusable="true" >
Fabian Kozynski1823f112019-01-18 11:43:29 -050030
Fabian Kozynski956b5972019-05-21 15:30:52 -040031 <com.android.systemui.util.AutoMarqueeTextView
Fabián Kozynskic3fa7472023-04-04 14:01:09 -040032 android:id="@+id/shade_carrier_text"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050033 android:layout_width="wrap_content"
Fabian Kozynski1823f112019-01-18 11:43:29 -050034 android:layout_height="wrap_content"
35 android:layout_weight="1"
Fabian Kozynskib223a3a2021-05-17 12:02:56 -040036 android:textAppearance="@style/TextAppearance.QS.Status.Carriers"
Fabian Kozynski1823f112019-01-18 11:43:29 -050037 android:textDirection="locale"
Fabian Kozynskidcf12162019-04-26 15:50:58 -040038 android:marqueeRepeatLimit="marquee_forever"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050039 android:singleLine="true"
40 android:maxEms="7"/>
Fabian Kozynski1823f112019-01-18 11:43:29 -050041
Fabian Kozynski64172cb2021-07-16 16:15:47 -040042 <View
43 android:id="@+id/spacer"
44 android:layout_width="@dimen/qs_carrier_margin_width"
45 android:layout_height="match_parent"
46 android:visibility="gone"
47 />
48
Fabian Kozynskie6d8ec82021-03-11 11:17:03 -050049 <include
50 layout="@layout/mobile_signal_group"
51 android:layout_width="wrap_content"
52 android:layout_height="wrap_content"
53 android:layout_marginStart="@dimen/qs_carrier_margin_width"
54 android:visibility="gone" />
55
Fabián Kozynskic3fa7472023-04-04 14:01:09 -040056</com.android.systemui.shade.carrier.ShadeCarrier>