I've found on stackoverflow the code that activates wifi-tethering programmatically on android... but how can I disable programmatically wifi tethering?
Is available something like setWifiApDisable
?
Asked
Active
Viewed 3,816 times
0

Lorelorelore
- 3,335
- 8
- 29
- 40
1 Answers
5
This should disable the wifi tethering.
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setWifiTetheringEnabled(false);
}
private void setWifiTetheringEnabled(boolean enable) {
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, enable);
} catch (Exception ex) {
}
break;
}
}
}
Changing setWifiTetheringEnabled(false);
to setWifiTetheringEnabled(true);
will enable the wifi tethering.

Howli
- 12,291
- 19
- 47
- 72