1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3** 4** Copyright 2011, 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<LinearLayout 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" 24 android:layout_height="wrap_content" 25 android:orientation="horizontal" 26 > 27 <FrameLayout 28 android:layout_height="17dp" 29 android:layout_width="wrap_content"> 30 <ImageView 31 android:id="@+id/mobile_in" 32 android:layout_height="wrap_content" 33 android:layout_width="wrap_content" 34 android:src="@drawable/ic_activity_down" 35 android:visibility="gone" 36 android:paddingEnd="2dp" 37 /> 38 <ImageView 39 android:id="@+id/mobile_out" 40 android:layout_height="wrap_content" 41 android:layout_width="wrap_content" 42 android:src="@drawable/ic_activity_up" 43 android:paddingEnd="2dp" 44 android:visibility="gone" 45 /> 46 </FrameLayout> 47 <FrameLayout 48 android:layout_width="wrap_content" 49 android:layout_height="wrap_content"> 50 <com.android.systemui.statusbar.AnimatedImageView 51 android:theme="@style/DualToneLightTheme" 52 android:id="@+id/mobile_signal" 53 android:layout_height="wrap_content" 54 android:layout_width="wrap_content" 55 systemui:hasOverlappingRendering="false" 56 /> 57 <com.android.systemui.statusbar.AnimatedImageView 58 android:theme="@style/DualToneDarkTheme" 59 android:id="@+id/mobile_signal_dark" 60 android:layout_height="wrap_content" 61 android:layout_width="wrap_content" 62 android:alpha="0.0" 63 systemui:hasOverlappingRendering="false" 64 /> 65 <ImageView 66 android:id="@+id/mobile_type" 67 android:layout_height="wrap_content" 68 android:layout_width="wrap_content" 69 /> 70 <ImageView 71 android:id="@+id/mobile_roaming" 72 android:layout_width="wrap_content" 73 android:layout_height="17dp" 74 android:paddingStart="22dp" 75 android:paddingTop="1.5dp" 76 android:paddingBottom="3dp" 77 android:scaleType="fitCenter" 78 android:src="@drawable/stat_sys_roaming" 79 android:contentDescription="@string/accessibility_data_connection_roaming" 80 android:visibility="gone" /> 81 </FrameLayout> 82</LinearLayout> 83