Search code examples
androidandroid-wifiandroid-gps

How to Block WIFI and GPS on Click? means user will not have any authorization to change the status of them


I have Two buttons to disable WIFI and GPS functionality. On Clicking on button user will not allowed to change the state of gps or wifi. it has to completely block the wifi and gps. Any one having solutions?


Solution

  • WifiManager wifiManager = (WifiManager)this.context.getSystemService(Context.WIFI_SERVICE);
    wifiManager.setWifiEnabled(status);
    

    also, add permission. You can find the details from here