码迷,mamicode.com
首页 > 移动开发 > 详细

android判断网络是否可用

时间:2017-03-27 13:30:17      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:ext   blog   network   cte   available   判断   system   work   style   

private boolean isNetworkConnected(Context context) {
    ConnectivityMannger cManager = (ConnectivityMannger)context.getSystemService(Context.CONNECTIVITY_SERVICE);
    NetworkInfo nInfo = cManager.getActiveNetworkInfo();
    if(nInfo != null && nInfo.isAvailable()) {
        return nInfo.isConnected();
    }
    return false;
}

 

android判断网络是否可用

标签:ext   blog   network   cte   available   判断   system   work   style   

原文地址:http://www.cnblogs.com/Memory7/p/6626083.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!