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     >
     28     <ImageView
     29         android:id="@+id/vpn"
     30         android:layout_height="wrap_content"
     31         android:layout_width="wrap_content"
     32         android:paddingEnd="6dp"
     33         android:src="@drawable/stat_sys_vpn_ic"
     34         />
     35     <FrameLayout
     36         android:id="@+id/wifi_combo"
     37         android:layout_height="wrap_content"
     38         android:layout_width="wrap_content"
     39         >
     40         <ImageView
     41             android:id="@+id/wifi_signal"
     42             android:layout_height="wrap_content"
     43             android:layout_width="wrap_content"
     44             />
     45     </FrameLayout>
     46     <View
     47         android:id="@+id/wifi_signal_spacer"
     48         android:layout_width="4dp"
     49         android:layout_height="4dp"
     50         android:visibility="gone"
     51         />
     52     <FrameLayout
     53         android:layout_height="wrap_content"
     54         android:layout_width="wrap_content"
     55         >
     56         <FrameLayout
     57             android:id="@+id/mobile_combo"
     58             android:layout_width="wrap_content"
     59             android:layout_height="wrap_content"
     60             >
     61             <ImageView
     62                 android:id="@+id/mobile_signal"
     63                 android:layout_height="wrap_content"
     64                 android:layout_width="wrap_content"
     65                 />
     66             <ImageView
     67                 android:id="@+id/mobile_type"
     68                 android:layout_height="wrap_content"
     69                 android:layout_width="wrap_content"
     70                 />
     71         </FrameLayout>
     72     </FrameLayout>
     73     <View
     74         android:id="@+id/wifi_airplane_spacer"
     75         android:layout_width="4dp"
     76         android:layout_height="4dp"
     77         android:visibility="gone"
     78         />
     79     <ImageView
     80         android:id="@+id/airplane"
     81         android:layout_height="wrap_content"
     82         android:layout_width="wrap_content"
     83         />
     84 </com.android.systemui.statusbar.SignalClusterView>
     85