Android detects if the network is available

Source: Internet
Author: User

/**
* Detect if the network is available
*
* @return
*/
public Boolean isnetworkconnected () {
Connectivitymanager cm = (Connectivitymanager) getsystemservice (Context.connectivity_service);
Networkinfo ni = Cm.getactivenetworkinfo ();
return NI! = null && ni.isconnectedorconnecting ();
}

/**
* Get current network type
*
* @return 0: No network 1:wifi network 2:wap Network 3:net Network
*/
public int Getnetworktype () {
int netType = 0;
Connectivitymanager Connectivitymanager = (connectivitymanager) getsystemservice (Context.connectivity_service);
Networkinfo networkinfo = Connectivitymanager.getactivenetworkinfo ();
if (Networkinfo = = null) {
return netType;
}
int nType = Networkinfo.gettype ();
if (NType = = Connectivitymanager.type_mobile) {
String extraInfo = Networkinfo.getextrainfo ();
if (! Stringutils.isempty (ExtraInfo)) {
if (Extrainfo.tolowercase (). Equals ("Cmnet")) {
NetType = nettype_cmnet;
} else {
NetType = Nettype_cmwap;
}
}
} else if (NType = = Connectivitymanager.type_wifi) {
NetType = Nettype_wifi;
}
return netType;
}

Android detects if the network is available

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.