blob: 42d541e3afc9afb360c47512928f4b64358ab132 [file] [log] [blame]
Evan Lairde1d13c92018-03-20 16:58:01 -04001<?xml version="1.0" encoding="utf-8"?>
2<!--
3**
4** Copyright 2018, The Android Open Source Project
5**
6** Licensed under the Apache License, Version 2.0 (the "License");
7** you may not use this file except in compliance with the License.
8** You may obtain a copy of the License at
9**
10** http://www.apache.org/licenses/LICENSE-2.0
11**
12** Unless required by applicable law or agreed to in writing, software
13** distributed under the License is distributed on an "AS IS" BASIS,
14** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15** See the License for the specific language governing permissions and
16** limitations under the License.
17*/
18-->
19<com.android.systemui.statusbar.StatusBarMobileView
20 xmlns:android="http://schemas.android.com/apk/res/android"
21 xmlns:systemui="http://schemas.android.com/apk/res-auto"
22 android:id="@+id/mobile_combo"
23 android:layout_width="wrap_content"
Evan Laird97ae20c2018-05-10 13:13:27 -040024 android:layout_height="match_parent"
25 android:gravity="center_vertical" >
26
27 <com.android.keyguard.AlphaOptimizedLinearLayout
28 android:id="@+id/mobile_group"
Evan Lairde1d13c92018-03-20 16:58:01 -040029 android:layout_width="wrap_content"
Evan Lairde1d13c92018-03-20 16:58:01 -040030 android:layout_height="match_parent"
Evan Laird97ae20c2018-05-10 13:13:27 -040031 android:gravity="center_vertical"
Evan Laird97ae20c2018-05-10 13:13:27 -040032 android:orientation="horizontal" >
33
34 <FrameLayout
35 android:id="@+id/inout_container"
36 android:layout_height="17dp"
Evan Lairde1d13c92018-03-20 16:58:01 -040037 android:layout_width="wrap_content"
Evan Laird97ae20c2018-05-10 13:13:27 -040038 android:layout_gravity="center_vertical">
39 <ImageView
40 android:id="@+id/mobile_in"
41 android:layout_height="wrap_content"
42 android:layout_width="wrap_content"
43 android:src="@drawable/ic_activity_down"
44 android:visibility="gone"
45 android:paddingEnd="2dp"
46 />
47 <ImageView
48 android:id="@+id/mobile_out"
49 android:layout_height="wrap_content"
50 android:layout_width="wrap_content"
51 android:src="@drawable/ic_activity_up"
52 android:paddingEnd="2dp"
53 android:visibility="gone"
54 />
55 </FrameLayout>
Evan Lairde1d13c92018-03-20 16:58:01 -040056 <ImageView
Evan Laird97ae20c2018-05-10 13:13:27 -040057 android:id="@+id/mobile_type"
58 android:layout_height="wrap_content"
59 android:layout_width="wrap_content"
60 android:layout_gravity="center_vertical"
Evan Laird747459a2018-06-15 16:24:40 -040061 android:paddingStart="2.5dp"
Evan Laird97ae20c2018-05-10 13:13:27 -040062 android:paddingEnd="1dp"
63 android:visibility="gone" />
64 <Space
65 android:id="@+id/mobile_roaming_space"
66 android:layout_height="match_parent"
67 android:layout_width="@dimen/roaming_icon_start_padding"
68 android:visibility="gone"
69 />
70 <FrameLayout
Evan Lairde1d13c92018-03-20 16:58:01 -040071 android:layout_width="wrap_content"
72 android:layout_height="wrap_content"
Evan Laird97ae20c2018-05-10 13:13:27 -040073 android:layout_gravity="center_vertical">
74 <com.android.systemui.statusbar.AnimatedImageView
75 android:id="@+id/mobile_signal"
76 android:layout_height="wrap_content"
77 android:layout_width="wrap_content"
78 systemui:hasOverlappingRendering="false"
79 />
80 <ImageView
81 android:id="@+id/mobile_roaming"
82 android:layout_width="wrap_content"
83 android:layout_height="wrap_content"
84 android:src="@drawable/stat_sys_roaming"
85 android:contentDescription="@string/data_connection_roaming"
86 android:visibility="gone" />
87 </FrameLayout>
88 </com.android.keyguard.AlphaOptimizedLinearLayout>
Evan Lairde1d13c92018-03-20 16:58:01 -040089</com.android.systemui.statusbar.StatusBarMobileView>
90