Home | History | Annotate | Download | only in layout
      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 <com.android.keyguard.AlphaOptimizedLinearLayout
     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:layout_gravity="center_vertical"
     26     android:orientation="horizontal">
     27     <FrameLayout
     28         android:layout_height="17dp"
     29         android:layout_width="wrap_content"
     30         android:layout_gravity="center_vertical">
     31         <ImageView
     32             android:id="@+id/mobile_in"
     33             android:layout_height="wrap_content"
     34             android:layout_width="wrap_content"
     35             android:src="@drawable/ic_activity_down"
     36             android:visibility="gone"
     37             android:paddingEnd="2dp"
     38             />
     39         <ImageView
     40             android:id="@+id/mobile_out"
     41             android:layout_height="wrap_content"
     42             android:layout_width="wrap_content"
     43             android:src="@drawable/ic_activity_up"
     44             android:paddingEnd="2dp"
     45             android:visibility="gone"
     46             />
     47     </FrameLayout>
     48     <ImageView
     49         android:id="@+id/mobile_type"
     50         android:layout_height="wrap_content"
     51         android:layout_width="wrap_content"
     52         android:layout_gravity="center_vertical"
     53         android:paddingStart="1dp"
     54         android:paddingEnd="2dp"
     55         android:visibility="gone" />
     56     <Space
     57         android:id="@+id/mobile_roaming_space"
     58         android:layout_height="match_parent"
     59         android:layout_width="@dimen/roaming_icon_start_padding"
     60         android:visibility="gone"
     61     />
     62     <FrameLayout
     63         android:layout_width="wrap_content"
     64         android:layout_height="wrap_content"
     65         android:layout_gravity="center_vertical">
     66         <com.android.systemui.statusbar.AnimatedImageView
     67             android:id="@+id/mobile_signal"
     68             android:layout_height="@dimen/qs_header_mobile_icon_size"
     69             android:layout_width="@dimen/qs_header_mobile_icon_size"
     70             systemui:hasOverlappingRendering="false"
     71             />
     72         <ImageView
     73             android:id="@+id/mobile_roaming"
     74             android:layout_width="wrap_content"
     75             android:layout_height="wrap_content"
     76             android:src="@drawable/stat_sys_roaming"
     77             android:contentDescription="@string/data_connection_roaming"
     78             android:visibility="gone" />
     79     </FrameLayout>
     80 </com.android.keyguard.AlphaOptimizedLinearLayout>
     81