1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* apps/common/assets/default/default/skins/StatusBar.xml 4** 5** Copyright 2011, The Android Open Source Project 6** 7** Licensed under the Apache License, Version 2.0 (the "License"); 8** you may not use this file except in compliance with the License. 9** You may obtain a copy of the License at 10** 11** http://www.apache.org/licenses/LICENSE-2.0 12** 13** Unless required by applicable law or agreed to in writing, software 14** distributed under the License is distributed on an "AS IS" BASIS, 15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16** See the License for the specific language governing permissions and 17** limitations under the License. 18*/ 19--> 20 21<com.android.systemui.statusbar.SignalClusterView 22 xmlns:android="http://schemas.android.com/apk/res/android" 23 android:layout_height="wrap_content" 24 android:layout_width="wrap_content" 25 android:orientation="horizontal" 26 > 27 <FrameLayout 28 android:id="@+id/wifi_combo" 29 android:layout_height="wrap_content" 30 android:layout_width="wrap_content" 31 android:layout_marginRight="-6dp" 32 > 33 <ImageView 34 android:id="@+id/wifi_signal" 35 android:layout_height="wrap_content" 36 android:layout_width="wrap_content" 37 android:layout_alignParentRight="true" 38 android:layout_centerVertical="true" 39 android:scaleType="center" 40 /> 41 <ImageView 42 android:id="@+id/wifi_inout" 43 android:layout_height="wrap_content" 44 android:layout_width="wrap_content" 45 android:layout_gravity="center|bottom" 46 /> 47 </FrameLayout> 48 <View 49 android:layout_height="6dp" 50 android:layout_width="6dp" 51 android:visibility="gone" 52 android:id="@+id/spacer" 53 /> 54 <FrameLayout 55 android:layout_height="wrap_content" 56 android:layout_width="wrap_content" 57 > 58 <View 59 android:layout_height="6dp" 60 android:layout_width="6dp" 61 android:visibility="invisible" 62 /> 63 <FrameLayout 64 android:id="@+id/mobile_combo" 65 android:layout_width="wrap_content" 66 android:layout_height="wrap_content" 67 > 68 <ImageView 69 android:id="@+id/mobile_signal" 70 android:layout_height="wrap_content" 71 android:layout_width="wrap_content" 72 /> 73 <ImageView 74 android:id="@+id/mobile_type" 75 android:layout_height="wrap_content" 76 android:layout_width="wrap_content" 77 /> 78 <ImageView 79 android:id="@+id/mobile_inout" 80 android:layout_height="wrap_content" 81 android:layout_width="wrap_content" 82 android:layout_gravity="right|bottom" 83 /> 84 </FrameLayout> 85 </FrameLayout> 86</com.android.systemui.statusbar.SignalClusterView> 87