Fix UI settings display issues
- Update access points to reflect the latest IP configuration - Show IP list for static IP networks Bug: 4391449 Change-Id: If8fb6fe8bdca9d6e635b1b12927c17e1661f200c
This commit is contained in:
@@ -207,11 +207,12 @@ public class WifiConfigController implements TextWatcher,
|
||||
mIpSettingsSpinner.setSelection(STATIC_IP);
|
||||
} else {
|
||||
mIpSettingsSpinner.setSelection(DHCP);
|
||||
//Display IP addresses
|
||||
for(InetAddress a : config.linkProperties.getAddresses()) {
|
||||
addRow(group, R.string.wifi_ip_address, a.getHostAddress());
|
||||
}
|
||||
}
|
||||
//Display IP addresses
|
||||
for(InetAddress a : config.linkProperties.getAddresses()) {
|
||||
addRow(group, R.string.wifi_ip_address, a.getHostAddress());
|
||||
}
|
||||
|
||||
|
||||
if (config.proxySettings == ProxySettings.STATIC) {
|
||||
mProxySettingsSpinner.setSelection(PROXY_STATIC);
|
||||
|
Reference in New Issue
Block a user