• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3**
4** Copyright 2022, 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
20<merge
21    xmlns:android="http://schemas.android.com/apk/res/android"
22    xmlns:systemui="http://schemas.android.com/apk/res-auto" >
23
24    <com.android.keyguard.AlphaOptimizedLinearLayout
25        android:id="@+id/mobile_group"
26        android:layout_width="wrap_content"
27        android:layout_height="match_parent"
28        android:gravity="center_vertical"
29        android:orientation="horizontal" >
30
31        <FrameLayout
32            android:id="@+id/inout_container"
33            android:layout_height="@dimen/status_bar_mobile_inout_container_size"
34            android:layout_width="wrap_content"
35            android:layout_gravity="center_vertical">
36            <ImageView
37                android:id="@+id/mobile_in"
38                android:layout_height="@dimen/status_bar_mobile_signal_size"
39                android:adjustViewBounds="true"
40                android:layout_width="wrap_content"
41                android:src="@drawable/ic_activity_down"
42                android:visibility="gone"
43                android:paddingEnd="2dp"
44                />
45            <ImageView
46                android:id="@+id/mobile_out"
47                android:layout_height="@dimen/status_bar_mobile_signal_size"
48                android:adjustViewBounds="true"
49                android:layout_width="wrap_content"
50                android:src="@drawable/ic_activity_up"
51                android:paddingEnd="2dp"
52                android:visibility="gone"
53                />
54        </FrameLayout>
55        <ImageView
56            android:id="@+id/mobile_type"
57            android:layout_height="@dimen/status_bar_mobile_type_size"
58            android:layout_width="wrap_content"
59            android:layout_gravity="center_vertical"
60            android:adjustViewBounds="true"
61            android:paddingStart="2.5sp"
62            android:paddingEnd="1sp"
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
71            android:layout_width="wrap_content"
72            android:layout_height="wrap_content"
73            android:layout_gravity="center_vertical">
74            <com.android.systemui.statusbar.AnimatedImageView
75                android:id="@+id/mobile_signal"
76                android:layout_height="@dimen/status_bar_mobile_signal_size"
77                android:layout_width="wrap_content"
78                android:adjustViewBounds="true"
79                systemui:hasOverlappingRendering="false"
80                />
81            <ImageView
82                android:id="@+id/mobile_roaming"
83                android:layout_width="wrap_content"
84                android:layout_height="@dimen/status_bar_mobile_roam_size"
85                android:adjustViewBounds="true"
86                android:layout_gravity="top|start"
87                android:src="@drawable/stat_sys_roaming"
88                android:contentDescription="@string/data_connection_roaming"
89                android:visibility="gone" />
90        </FrameLayout>
91    </com.android.keyguard.AlphaOptimizedLinearLayout>
92</merge>
93