Merge "Add 5G icon in manual network selection."

This commit is contained in:
TreeHugger Robot
2020-01-03 07:41:12 +00:00
committed by Android (Google) Code Review
2 changed files with 32 additions and 0 deletions

View File

@@ -187,6 +187,9 @@ public class NetworkOperatorPreference extends Preference {
return mShow4GForLTE
? R.drawable.ic_signal_strength_4g : R.drawable.signal_strength_lte;
}
if (ci instanceof CellInfoNr) {
return R.drawable.signal_strength_5g;
}
return MobileNetworkUtils.NO_CELL_DATA_TYPE_ICON;
}