• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_marginEnd="-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_alignParentEnd="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:id="@+id/wimax_combo"
56        android:layout_height="wrap_content"
57        android:layout_width="wrap_content"
58        android:layout_marginEnd="-6dp"
59        >
60        <ImageView
61            android:id="@+id/wimax_signal"
62            android:layout_height="wrap_content"
63            android:layout_width="wrap_content"
64            android:layout_alignParentEnd="true"
65            android:layout_centerVertical="true"
66            android:scaleType="center"
67            />
68        <ImageView
69            android:id="@+id/wimax_inout"
70            android:layout_height="wrap_content"
71            android:layout_width="wrap_content"
72            android:layout_gravity="center|bottom"
73            />
74    </FrameLayout>
75    -->
76    <FrameLayout
77        android:layout_height="wrap_content"
78        android:layout_width="wrap_content"
79        >
80        <View
81            android:layout_height="6dp"
82            android:layout_width="6dp"
83            android:visibility="invisible"
84            />
85        <FrameLayout
86            android:id="@+id/mobile_combo"
87            android:layout_width="wrap_content"
88            android:layout_height="wrap_content"
89            >
90            <ImageView
91                android:id="@+id/mobile_signal"
92                android:layout_height="wrap_content"
93                android:layout_width="wrap_content"
94                />
95            <ImageView
96                android:id="@+id/mobile_type"
97                android:layout_height="wrap_content"
98                android:layout_width="wrap_content"
99                />
100            <ImageView
101                android:id="@+id/mobile_inout"
102                android:layout_height="wrap_content"
103                android:layout_width="wrap_content"
104                android:layout_gravity="end|bottom"
105                />
106        </FrameLayout>
107    </FrameLayout>
108    <ImageView
109        android:id="@+id/airplane"
110        android:layout_height="wrap_content"
111        android:layout_width="wrap_content"
112        />
113</com.android.systemui.statusbar.SignalClusterView>
114