该字段的可能值是什么?WiFi安全类型' ? 文档未列出可能的值。 https://developer.android.com/reference/android/app/admin/DevicePolicyManager.html#EXTRA_PROVISIONING_WIFI_SECURITY_TYPE
我希望有一个列表:
WPA = "wpa"
WPA2 = "wpa2"
WPA2-personal = "wpa2personal"
WPA2-enterprise = "wpa2enterprise"
等
我不愿意尝试一些事情,比如“强迫”和“强迫症”。什么有效,什么无效,因为每次尝试,你都必须擦拭并重新开始。浪费至少15分钟。
答案 0 :(得分:1)
自Android 5.0.0_r1-5.1.0_r1起,可接受的字段为" NONE"," WPA"和" WEP"。似乎null或空值将解析为" NONE"但我还没有确认。
这些字段直接映射到ManagedProvisioning项目(AOSP)中的WifiConfig类。
注意:安全类型直接在此类中定义,而不是使用WifiConfiguration类中的常量。
enum SecurityType {
NONE,
WPA,
WEP;
}
这是WifiConfig功能(AOSP)的一个片段,显示了如何使用安全类型:
/**
* Adds a new WiFi network.
*/
public int addNetwork(String ssid, boolean hidden, String type, String password,
String proxyHost, int proxyPort, String proxyBypassHosts, String pacUrl) {
if (!mWifiManager.isWifiEnabled()) {
mWifiManager.setWifiEnabled(true);
}
WifiConfiguration wifiConf = new WifiConfiguration();
SecurityType securityType;
if (type == null || TextUtils.isEmpty(type)) {
securityType = SecurityType.NONE;
} else {
securityType = Enum.valueOf(SecurityType.class, type.toUpperCase());
}
// If we have a password, and no security type, assume WPA.
// TODO: Remove this when the programmer supports it.
if (securityType.equals(SecurityType.NONE) && !TextUtils.isEmpty(password)) {
securityType = SecurityType.WPA;
}
wifiConf.SSID = ssid;
wifiConf.status = WifiConfiguration.Status.ENABLED;
wifiConf.hiddenSSID = hidden;
switch (securityType) {
case NONE:
wifiConf.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
wifiConf.allowedAuthAlgorithms.set(WifiConfiguration.AuthAlgorithm.OPEN);
break;
case WPA:
updateForWPAConfiguration(wifiConf, password);
break;
case WEP:
updateForWEPConfiguration(wifiConf, password);
break;
}
updateForProxy(wifiConf, proxyHost, proxyPort, proxyBypassHosts, pacUrl);
int netId = mWifiManager.addNetwork(wifiConf);
if (netId != -1) {
// Setting disableOthers to 'true' should trigger a connection attempt.
mWifiManager.enableNetwork(netId, true);
mWifiManager.saveConfiguration();
}
return netId;
}
如果我们需要企业网络的凭据,似乎我们运气不好。由于设备所有者功能适用于MDM,因此对我来说有点令人困惑;有时需要连接到企业网络!