处理android 7 Nougat上的网络更改

时间:2016-10-26 15:17:45

标签: android networking event-handling android-broadcastreceiver android-7.0-nougat

有没有办法在Android N上处理wi-fi或蜂窝网络启用/禁用。我试图添加带有intent-filter Flash的广播接收器,但它已被弃用N和更高版本。

1 个答案:

答案 0 :(得分:16)

网络更改了android N和high

的侦听器实现
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
    registerReceiver(mNetworkReceiver, 
        new IntentFilter(ConnectivityManager.CONNECTIVITY_ACTION));
}

非常感谢 CommonsWare 有用的答案。