美文网首页
Android8.0 接收断网广播

Android8.0 接收断网广播

作者: 这个杀手不太累 | 来源:发表于2018-08-12 15:09 被阅读293次

    当我们在Android设备上关闭网络连接时系统会发送网络改变广播,如下:


    log.PNG
    08-12 14:51:57.763 877-968/? D/ConnectivityService: sendStickyBroadcast: action=android.net.conn.CONNECTIVITY_CHANGE
    

    actionandroid.net.conn.CONNECTIVITY_CHANGE,只要我们知道了这个Action就可以写一个广播接收器来接收网络状态的改变,并做出不同的处理逻辑,比如显示一个断网提示之类的什么的。

    下面看下代码

    public class NetChangeReceiver extends BroadcastReceiver {
    
        @SuppressLint("UnsafeProtectedBroadcastReceiver")
        @Override
        public void onReceive(Context context, Intent intent) {
            try {
                ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
                NetworkInfo networkInfo = connectivityManager.getActiveNetworkInfo();
                if (networkInfo != null && networkInfo.isAvailable()) {
                    //有网处理
                } else {
                    //无网显示个提示什么的
                }
            } catch (Exception e) {
                //ignore
            }
        }
    }
    

    然后在清单文件中注册:

    // 这里注意路径,每个人写的包名不一样,须修改成自己的包名下的路径
    <receiver android:name=".receiver.NetChangeReceiver ">
            <intent-filter>
                <action
                    android:name="android.net.conn.CONNECTIVITY_CHANGE" />
            </intent-filter>
    </receiver>
    

    看起来完成了,在Android 5.1上试验也没问题,但是在8.0上的手机出问题了,具然收不到广播。What?

    查了下,发现,在Android8.0行为变理,大多数静态注册的广播将接收不到,好吧。。。,将上述代码修改成静态注册的方式,测试,果然可以收到。

    静态注册代码如下:

    NetChangeReceiver receiver = new NetChangeReceiver ();
    IntentFilter intentFilter = new IntentFilter();
    intentFilter.addAction("android.net.conn.CONNECTIVITY_CHANGE");
    mContext.registerReceiver(receiver, intentFilter);
    

    这里使用的全局的Application,并没有解注册,大家注意根据需要实现。

    相关文章

      网友评论

          本文标题:Android8.0 接收断网广播

          本文链接:https://www.haomeiwen.com/subject/hapsbftx.html