diff options
| author | 2011-11-09 16:49:44 -0500 | |
|---|---|---|
| committer | 2011-11-10 00:16:02 -0500 | |
| commit | 633eabe56d3126fa92eb56636019e5792e20a5da (patch) | |
| tree | 425b09e0ae25434a33ea12162f49ad1f59a52185 | |
| parent | e4a1bafba351a1b4cea18af3442412de03dd4d89 (diff) | |
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
| -rw-r--r-- | packages/SystemUI/res/layout/signal_cluster_view.xml | 3 | ||||
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java | 10 |
2 files changed, 7 insertions, 6 deletions
diff --git a/packages/SystemUI/res/layout/signal_cluster_view.xml b/packages/SystemUI/res/layout/signal_cluster_view.xml index 93ac22ed0920..9be90415201d 100644 --- a/packages/SystemUI/res/layout/signal_cluster_view.xml +++ b/packages/SystemUI/res/layout/signal_cluster_view.xml @@ -51,7 +51,7 @@ android:visibility="gone" android:id="@+id/spacer" /> - <FrameLayout + <!--<FrameLayout android:id="@+id/wimax_combo" android:layout_height="wrap_content" android:layout_width="wrap_content" @@ -72,6 +72,7 @@ android:layout_gravity="center|bottom" /> </FrameLayout> + --> <FrameLayout android:layout_height="wrap_content" android:layout_width="wrap_content" diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java index b0e6968c46fd..51fb262bff82 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java @@ -350,11 +350,11 @@ public class PhoneStatusBar extends StatusBar { (SignalClusterView)sb.findViewById(R.id.signal_cluster); mNetworkController.addSignalCluster(signalCluster); signalCluster.setNetworkController(mNetworkController); - final ImageView wimaxRSSI = - (ImageView)sb.findViewById(R.id.wimax_signal); - if (wimaxRSSI != null) { - mNetworkController.addWimaxIconView(wimaxRSSI); - } +// final ImageView wimaxRSSI = +// (ImageView)sb.findViewById(R.id.wimax_signal); +// if (wimaxRSSI != null) { +// mNetworkController.addWimaxIconView(wimaxRSSI); +// } // Recents Panel mRecentTasksLoader = new RecentTasksLoader(context); updateRecentsPanel(); |