2013年12月24日 星期二

Wifi Pocket / Hotspot toggle

//off---------------------------
WifiManager wifiManager = (WifiManager) getSystemService(WIFI_SERVICE);

Method[] methods = wifiManager.getClass().getDeclaredMethods();
for (Method method : methods) {
if (method.getName().equals("setWifiApEnabled")) {
try {
method.invoke(wifiManager, null, false);
} catch (Exception ex) {
}
break;
}
}

//on---------------------------
WifiManager wifiManager = (WifiManager) getSystemService(WIFI_SERVICE);

Method[] methods = wifiManager.getClass().getDeclaredMethods();
for (Method method : methods) {
if (method.getName().equals("setWifiApEnabled")) {
try {
method.invoke(wifiManager, null, true);
} catch (Exception ex) {
}
break;
}
}

沒有留言:

張貼留言

Related Posts Plugin for WordPress, Blogger...