Wi-Fi, now corporeal!

Given a state where the Wi-Fi icon could overflow (i.e. on the lock
screen with mobile data and other icons showing:

Killing the sysui process could cause the whole wifi icon to become
hidden, and it never was unhidden.

Test: With the overflow space in use, `adb shell kill $(pid com.android.systemui)`
Change-Id: I026923b3dae16b9afa1a5acc3bd88887816a6391
Fixes: 80577291
This commit is contained in:
Evan Laird
2018-06-04 17:54:42 -04:00
parent dea740bdce
commit 7804778234
2 changed files with 4 additions and 2 deletions

View File

@@ -260,7 +260,8 @@ public class StatusBarMobileView extends FrameLayout implements DarkReceiver,
break;
case STATE_HIDDEN:
default:
setVisibility(View.INVISIBLE);
mMobileGroup.setVisibility(View.INVISIBLE);
mDotView.setVisibility(View.INVISIBLE);
break;
}
}

View File

@@ -141,7 +141,8 @@ public class StatusBarWifiView extends FrameLayout implements DarkReceiver,
break;
case STATE_HIDDEN:
default:
setVisibility(View.GONE);
mWifiGroup.setVisibility(View.GONE);
mDotView.setVisibility(View.GONE);
break;
}
}