I'm going to create xposed module that will add one option to the window which appears when user clicks/holds one of WiFi networks. The dialog box where are located options like "connect", "modify", "cancel".
Where do I find these methods?
I'm going to create xposed module that will add one option to the window which appears when user clicks/holds one of WiFi networks. The dialog box where are located options like "connect", "modify", "cancel".
Where do I find these methods?
Similarly for diabling network use http://developer.android.com/reference/android/net/wifi/WifiManager.html#disableNetwork(int) for forgetiing network http://developer.android.com/reference/android/net/wifi/WifiManager.html#removeNetwork(int) for disconnect connection: http://developer.android.com/reference/android/net/wifi/WifiManager.html#disconnect()
For updating netwrok http://developer.android.com/reference/android/net/wifi/WifiManager.html#updateNetwork(android.net.wifi.WifiConfiguration)
For all other methods refer to http://developer.android.com/reference/android/net/wifi/WifiManager.html