I've got a BroadcastReceiver that turns off the wifi..in the same i want turn off also the data connection..How can i do it? This is the code
public static class LowBatteryReceiver extends BroadcastReceiver{
public void onReceive(Context context, Intent intent){
wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
wifiManager.setWifiEnabled(false);
wifi = (WifiManager)context.getSystemService(Context.WIFI_SERVICE);
Toast.makeText(context, "Turning off wifi..", Toast.LENGTH_LONG).show();
}
}
Thanks
You must use this permission
In your AndroidManifest.xml
And your LowBatteryReceiver