Home | History | Annotate | Download | only in layout
      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="match_parent"
     24     android:layout_width="wrap_content"
     25     android:gravity="center"
     26     android:orientation="horizontal"
     27     >
     28     <FrameLayout
     29         android:id="@+id/wifi_combo"
     30         android:layout_height="wrap_content"
     31         android:layout_width="wrap_content"
     32         android:layout_marginEnd="-6dp"
     33         >
     34         <ImageView
     35             android:id="@+id/wifi_signal"
     36             android:layout_height="wrap_content"
     37             android:layout_width="wrap_content"
     38             android:layout_alignParentEnd="true"
     39             android:layout_centerVertical="true"
     40             android:scaleType="center"
     41             />
     42     </FrameLayout>
     43     <View
     44         android:layout_height="6dp"
     45         android:layout_width="6dp"
     46         android:visibility="gone"
     47         android:id="@+id/spacer"
     48         />
     49     <!--<FrameLayout
     50         android:id="@+id/wimax_combo"
     51         android:layout_height="wrap_content"
     52         android:layout_width="wrap_content"
     53         android:layout_marginEnd="-6dp"
     54         >
     55         <ImageView
     56             android:id="@+id/wimax_signal"
     57             android:layout_height="wrap_content"
     58             android:layout_width="wrap_content"
     59             android:layout_alignParentEnd="true"
     60             android:layout_centerVertical="true"
     61             android:scaleType="center"
     62             />
     63     </FrameLayout>
     64     -->
     65     <FrameLayout
     66         android:layout_height="wrap_content"
     67         android:layout_width="wrap_content"
     68         >
     69         <View
     70             android:layout_height="6dp"
     71             android:layout_width="6dp"
     72             android:visibility="invisible"
     73             />
     74         <FrameLayout
     75             android:id="@+id/mobile_combo"
     76             android:layout_width="wrap_content"
     77             android:layout_height="wrap_content"
     78             >
     79             <ImageView
     80                 android:id="@+id/mobile_signal"
     81                 android:layout_height="wrap_content"
     82                 android:layout_width="wrap_content"
     83                 />
     84             <ImageView
     85                 android:id="@+id/mobile_type"
     86                 android:layout_height="wrap_content"
     87                 android:layout_width="wrap_content"
     88                 />
     89         </FrameLayout>
     90     </FrameLayout>
     91     <ImageView
     92         android:id="@+id/airplane"
     93         android:layout_height="wrap_content"
     94         android:layout_width="wrap_content"
     95         />
     96 </com.android.systemui.statusbar.SignalClusterView>
     97