We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 355301e + 3ee47ae commit 7d1ef0cCopy full SHA for 7d1ef0c
packages/SystemUI/src/com/android/systemui/statusbar/policy/NetworkController.java
@@ -935,10 +935,12 @@ void refreshViews() {
935
936
if (mDataConnected) {
937
mobileLabel = mNetworkName;
938
- } else if (mConnected) {
939
- if (hasService()) {
+ } else if (mConnected || mServiceState.isEmergencyOnly()) {
+ if (hasService() || mServiceState.isEmergencyOnly()) {
940
+ // The isEmergencyOnly test covers the case of a phone with no SIM
941
942
} else {
943
+ // Tablets, basically
944
mobileLabel = "";
945
}
946
0 commit comments