判断是否有网
程序员文章站
2022-05-19 18:56:29
...
NetTestUtil
public class NetTestUtil {
public static boolean netTest(Context context){
ConnectivityManager connectivityManager= (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
if(connectivityManager==null){
Toast.makeText(context,"断网了,请连接网络后重试!",Toast.LENGTH_SHORT).show();
return false;
}
NetworkInfo netInfo=connectivityManager.getActiveNetworkInfo();
if(netInfo==null){
Toast.makeText(context,"断网了,请连接网络后重试!",Toast.LENGTH_SHORT).show();
return false;
}
if(netInfo.isConnected()){
return true;
}
return false;
}
}
上一篇: 判断是否有网
下一篇: 判断网络类型及是否有网络