美文网首页
判断当前网络是否连接

判断当前网络是否连接

作者: 不略 | 来源:发表于2022-11-12 18:21 被阅读0次
public class NetworkUtils {
    public static boolean isNetworkAvailable(Context context) {
        ConnectivityManager manager = (ConnectivityManager) context
                .getApplicationContext().getSystemService(
                        Context.CONNECTIVITY_SERVICE);
        if (manager == null) {
            return false;
        }

        NetworkInfo networkinfo = manager.getActiveNetworkInfo();

        if (networkinfo == null || !networkinfo.isAvailable()) {
            return false;
        }

        return true;
    }
}

相关文章

网友评论

      本文标题:判断当前网络是否连接

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