Android Network State Check isMobileConnected(Context context)

Here you can find the source of isMobileConnected(Context context)

Description

is Mobile Connected

License

Apache License

Declaration

public static boolean isMobileConnected(Context context) 

Method Source Code

//package com.java2s;
/*//from   ww  w  .  ja v a2s  .c  om
 * Copyright (C) 2013  WhiteCat ?? (www.thinkandroid.cn)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import android.content.Context;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;

public class Main {

    public static boolean isMobileConnected(Context context) {
        if (context != null) {
            ConnectivityManager mConnectivityManager = (ConnectivityManager) context
                    .getSystemService(Context.CONNECTIVITY_SERVICE);
            NetworkInfo mMobileNetworkInfo = mConnectivityManager
                    .getNetworkInfo(ConnectivityManager.TYPE_MOBILE);
            if (mMobileNetworkInfo != null) {
                return mMobileNetworkInfo.isAvailable();
            }
        }
        return false;
    }
}

Related

  1. isMobileDataEnable(Context context)
  2. isWifiDataEnable(Context context)
  3. isMobileConnected(Context context)
  4. isNetworkAvailable(Context context)
  5. isNetworkConnected(Context context)
  6. isNetworkConnected(Context context)
  7. isNetworkAvailable(Context context)
  8. isNetworkConnected(Context context)
  9. onNetwork(Context context)