我需要在Android 2.2(Froyo)中创建一个用于创建Wifi热点的API调用(如Tethering和Portable Hotspot设置项中所示)。
答案 0 :(得分:42)
你可以打电话
private boolean setWifiApEnabled(WifiConfiguration wifiConfig, boolean enabled);
使用反射:)
获取WifiManager
后使用反射获取WifiManager
声明的方法,查找此方法名称setWifiApEnabled
并通过WifiManager
对象调用
这些API标记为@hide,因此目前您无法直接使用它们,但它们出现在WifiManager的AIDL上,因此可以访问它们!
一个例子可以是:
WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
Method[] wmMethods = wifi.getClass().getDeclaredMethods();
for(Method method: wmMethods){
if(method.getName().equals("setWifiApEnabled")){
WifiConfiguration netConfig = new WifiConfiguration();
netConfig.SSID = "\"PROVAAP\"";
netConfig.allowedAuthAlgorithms.set(WifiConfiguration.AuthAlgorithm.OPEN);
netConfig.allowedProtocols.set(WifiConfiguration.Protocol.RSN);
netConfig.allowedProtocols.set(WifiConfiguration.Protocol.WPA);
netConfig.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); netConfig.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP);
netConfig.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP);
netConfig.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP);
netConfig.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP);
try {
method.invoke(wifi, netConfig,true);
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
}
}
它可以工作,但是我无法用我自己的配置更改当前配置,并且获取当前活动AP的WifiConfiguration会将我驱动为空配置。为什么?
答案 1 :(得分:4)
这适用于API 8及更高版本。我使用了一个完全不同的版本然后在下面(或上面),并遇到了同样的问题markov00遇到;无法加载便携式Wi-Fi AP的默认WifiConfiguration。我在其他地方找到了解决方案。
如果您喜欢这个解决方案,如果将其作为答案接受将会很好
WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
Method[] wmMethods = wifi.getClass().getDeclaredMethods();
for (Method method: wmMethods){
if (method.getName().equals("setWifiApEnabled")){
try {
// just nullify WifiConfiguration to load the default configuration ;)
method.invoke(wifi, null, true);
} catch (IllegalArgumentException e){
e.printStackTrace();
} catch (IllegalAccessException e){
e.printStackTrace();
} catch (InvocationTargetException e){
e.printStackTrace();
}
}
}
答案 2 :(得分:2)
似乎没有用于创建WiFi热点的API调用 - 抱歉!