Skip to content

Commit 633eabe

Browse files
committed
Remove dedicated wimax icon to fix RSSI layout.
We'll bring the wimax information back, but as part of the mobile data indicator. Bug: 5592198 Change-Id: I7d797db18b2d86ea4b8609642c6e09a5b2425459
1 parent e4a1baf commit 633eabe

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

packages/SystemUI/res/layout/signal_cluster_view.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
android:visibility="gone"
5252
android:id="@+id/spacer"
5353
/>
54-
<FrameLayout
54+
<!--<FrameLayout
5555
android:id="@+id/wimax_combo"
5656
android:layout_height="wrap_content"
5757
android:layout_width="wrap_content"
@@ -72,6 +72,7 @@
7272
android:layout_gravity="center|bottom"
7373
/>
7474
</FrameLayout>
75+
-->
7576
<FrameLayout
7677
android:layout_height="wrap_content"
7778
android:layout_width="wrap_content"

packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -350,11 +350,11 @@ protected View makeStatusBarView() {
350350
(SignalClusterView)sb.findViewById(R.id.signal_cluster);
351351
mNetworkController.addSignalCluster(signalCluster);
352352
signalCluster.setNetworkController(mNetworkController);
353-
final ImageView wimaxRSSI =
354-
(ImageView)sb.findViewById(R.id.wimax_signal);
355-
if (wimaxRSSI != null) {
356-
mNetworkController.addWimaxIconView(wimaxRSSI);
357-
}
353+
// final ImageView wimaxRSSI =
354+
// (ImageView)sb.findViewById(R.id.wimax_signal);
355+
// if (wimaxRSSI != null) {
356+
// mNetworkController.addWimaxIconView(wimaxRSSI);
357+
// }
358358
// Recents Panel
359359
mRecentTasksLoader = new RecentTasksLoader(context);
360360
updateRecentsPanel();

0 commit comments

Comments
 (0)