Back to project page LinuxZaSve_mobile.
The source code is released under:
Apache License
If you think the Android project LinuxZaSve_mobile listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.linuxzasve.mobile; /* w w w .j a va 2s . c o m*/ import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo; /** * @author dejan */ public class ActivityHelper { public static boolean isOnline(final Context context) { ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo netInfo = cm.getActiveNetworkInfo(); return (netInfo != null) && netInfo.isConnectedOrConnecting(); } }