当第一个网络关闭然后再打开时 Android 应用程序崩溃
我正在使用以下函数来检查网络连接,但是当 wifi 状态交换时应用程序崩溃
public static boolean isNetworkAvailable(Context context) {
ConnectivityManager connec = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = connec.getActiveNetworkInfo();
if (netInfo != null && netInfo.isConnected() == true) {
return true;
}
return false;
}
I am using the following function to check network connectivity but application crashes when wifi status is swapped
public static boolean isNetworkAvailable(Context context) {
ConnectivityManager connec = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = connec.getActiveNetworkInfo();
if (netInfo != null && netInfo.isConnected() == true) {
return true;
}
return false;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在网络之间切换需要一些时间...
所以现在如果我们禁用 wifi,它会在几秒钟后自动连接到移动网络..如果我们启用 wifi,那么它会再次连接到 wifi 网络...
中的线程您的应用程序正在该班次之前检查连接...
检查此处的对话
Android:如何以编程方式启用/禁用 Wifi 或 Internet 连接
it took some time to shift between networks...
So Now if we disable the wifi it automatically get connected to mobile network after few seconds.. and if we enable the wifi then it get connected to wifi network again...
The thread in your application is checking the connectivity before that shift...
check the conversation here
Android: How to Enable/Disable Wifi or Internet Connection Programmatically
您是否缺少 NullPointerException?
我使用以下方法:
Are you missing a NullPointerException?
I use the following method: