Format change at "Mobile network type" value

Remove "network type Number" from "mobile network type" value
at "About Phone > Status".

For example value "UNKNOWN:0" became "UNKNOWN"
(if value is "UNKNOWN", the word is localized)

The number ":0" did not add much value to the user.

Change-Id: Iee29fa2ab42f2d6eab5d9dbd6f647087ee382648
This commit is contained in:
Akira Oshimi
2012-10-18 18:14:00 +09:00
committed by Johan Redestig
parent 59ee388908
commit 1fd3544c55

View File

@@ -332,8 +332,11 @@ public class Status extends PreferenceActivity {
private void updateNetworkType() {
// Whether EDGE, UMTS, etc...
setSummaryText(KEY_NETWORK_TYPE, mTelephonyManager.getNetworkTypeName() +
":" + mTelephonyManager.getNetworkType());
String networktype = null;
if (TelephonyManager.NETWORK_TYPE_UNKNOWN != mTelephonyManager.getNetworkType()) {
networktype = mTelephonyManager.getNetworkTypeName();
}
setSummaryText(KEY_NETWORK_TYPE, networktype);
}
private void updateDataState() {