Android Network State Check isConnected(Context context)

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

Description

is Connected

License

Apache License

Declaration

public static boolean isConnected(Context context) 

Method Source Code

//package com.java2s;
/*//  ww w . ja  va2 s .c  o m
 Copyright 2012-2013 Andrey Zaytsev, Sergey Ivanov

 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;

public class Main {
    public static boolean isConnected(Context context) {
        ConnectivityManager manager = (ConnectivityManager) context
                .getSystemService(Context.CONNECTIVITY_SERVICE);

        if (manager.getActiveNetworkInfo() != null
                && manager.getActiveNetworkInfo().isAvailable()
                && manager.getActiveNetworkInfo().isConnected())
            return true;

        return false;
    }
}

Related

  1. hasConnectivity(final NetworkInfo info)
  2. hasInternetAvailable(Context context)
  3. hasMobileConnectivity(Context context)
  4. hasNoConnectivity(Application application)
  5. isConnected(Context context)
  6. isConnected(Context context)
  7. isConnected(NetworkInfo info)
  8. isConnected(final Context context, final int... networkTypes)
  9. isConnected(final NetworkInfo info)