blob: a5b8cfa5d60be5687c24fd9b5fbcf97c03687452 [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 Kozynski00afd492020-02-15 19:58:10 -050017<com.android.systemui.qs.carrier.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"
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
31 <include
32 layout="@layout/mobile_signal_group"
33 android:layout_width="wrap_content"
34 android:layout_height="wrap_content"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050035 android:layout_marginEnd="@dimen/qs_carrier_margin_width"
Fabian Kozynski1823f112019-01-18 11:43:29 -050036 android:visibility="gone" />
37
Fabian Kozynski956b5972019-05-21 15:30:52 -040038 <com.android.systemui.util.AutoMarqueeTextView
Fabian Kozynski1823f112019-01-18 11:43:29 -050039 android:id="@+id/qs_carrier_text"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050040 android:layout_width="wrap_content"
Fabian Kozynski1823f112019-01-18 11:43:29 -050041 android:layout_height="wrap_content"
42 android:layout_weight="1"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050043 android:textAppearance="@style/TextAppearance.QS.Status"
Fabian Kozynski1823f112019-01-18 11:43:29 -050044 android:textDirection="locale"
Fabian Kozynskidcf12162019-04-26 15:50:58 -040045 android:marqueeRepeatLimit="marquee_forever"
Fabian Kozynski4e76d1f2019-02-25 16:30:04 -050046 android:singleLine="true"
47 android:maxEms="7"/>
Fabian Kozynski1823f112019-01-18 11:43:29 -050048
Fabian Kozynski00afd492020-02-15 19:58:10 -050049</com.android.systemui.qs.carrier.QSCarrier>