Obtain Network Notification setting in Android

807 Views Asked by At

Does anyone know if there is a way to programmatically obtain the Network Notification setting on an Android device? This setting is what allows a user to be notified (or not) when a network is available. I simply need to retrieve the current value, not set it.

I have checked ConnectivityManager and also perused objects like WifiInfo and haven't seen anything that appears too useful. Thanks for any guidance.

1

There are 1 best solutions below

2
On

You should make a broadcast receiver that will be triggered when a new network is availible by adding this to your manifest.

<receiver
    android:name=".receivers.NetworkChangeReceiver"
    android:label="NetworkChangeReceiver">
    <intent-filter>
        <action
            android:name="android.net.conn.CONNECTIVITY_CHANGE" />
        <action
            android:name="android.net.wifi.WIFI_STATE_CHANGED" />
    </intent-filter>
</receiver>

And then in your receiver you can check if there is connectivity.

public class NetworkChangeReceiver extends BroadcastReceiver{

   @Override
   public void onReceive(Context context, Intent intent) {
   ConnectivityManager cm=(ConnectivityManager)  context.getSystemService(Context.CONNECTIVITY_SERVICE);
    if(cm.getActiveNetworkInfo()!=null&&cm.getActiveNetworkInfo().isConnected()){
       //Send a broadcast to your service or activity that you have network or notifiy you have a network 
       //...
   }else{
       LOG.i("Network UNAVAILABLE");
   }
 }

}