Code for determining whether a network is available in Android (whether it is a 3G or Wi-Fi network)

Source: Internet
Author: User

Copy codeThe Code is as follows: ConnectivityManager mConnectivity = (ConnectivityManager) getSystemService (Context. CONNECTIVITY_SERVICE );
TelephonyManager mTelephony = (TelephonyManager) this. getSystemService (TELEPHONY_SERVICE );
// Check the network connection. If no network is available, no network connection is required.
NetworkInfo info = mConnectivity. getActiveNetworkInfo ();

If (info = null |! MConnectivity. getBackgroundDataSetting ()){
Return false;
}

// Determine the network connection type. Only data in 3G or wifi is updated.
Int netType = info. getType ();
Int netSubtype = info. getSubtype ();

If (netType = ConnectivityManager. TYPE_WIFI ){
Return info. isConnected ();
} Else if (netType = ConnectivityManager. TYPE_MOBILE
& NetSubtype = TelephonyManager. NETWORK_TYPE_UMTS
&&! MTelephony. isNetworkRoaming ()){
Return info. isConnected ();
} Else {
Return false;
}

Check the network permissions in AndroidManifest. xml.

<Uses-permission android: name = "android. permission. ACCESS_NETWORK_STATE"/>

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.