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 <!-- extends LinearLayout -->
     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_vertical"
     26     android:orientation="horizontal"
     27     android:paddingEnd="@dimen/signal_cluster_battery_padding"
     28     >
     29     <ImageView
     30         android:id="@+id/vpn"
     31         android:layout_height="wrap_content"
     32         android:layout_width="wrap_content"
     33         android:paddingEnd="6dp"
     34         android:src="@drawable/stat_sys_vpn_ic"
     35         />
     36     <FrameLayout
     37         android:id="@+id/wifi_combo"
     38         android:layout_height="wrap_content"
     39         android:layout_width="wrap_content"
     40         >
     41         <ImageView
     42             android:id="@+id/wifi_signal"
     43             android:layout_height="wrap_content"
     44             android:layout_width="wrap_content"
     45             />
     46     </FrameLayout>
     47     <View
     48         android:id="@+id/wifi_signal_spacer"
     49         android:layout_width="4dp"
     50         android:layout_height="4dp"
     51         android:visibility="gone"
     52         />
     53     <LinearLayout
     54         android:id="@+id/mobile_signal_group"
     55         android:layout_height="wrap_content"
     56         android:layout_width="wrap_content"
     57         >
     58     </LinearLayout>
     59     <ImageView
     60         android:id="@+id/no_sims"
     61         android:layout_height="wrap_content"
     62         android:layout_width="wrap_content"
     63         android:src="@drawable/stat_sys_no_sims"
     64         />
     65     <View
     66         android:id="@+id/wifi_airplane_spacer"
     67         android:layout_width="4dp"
     68         android:layout_height="4dp"
     69         android:visibility="gone"
     70         />
     71     <ImageView
     72         android:id="@+id/airplane"
     73         android:layout_height="wrap_content"
     74         android:layout_width="wrap_content"
     75         />
     76 </com.android.systemui.statusbar.SignalClusterView>
     77