Check network connectivity android
问题 I am new using Service in Android and I am quite confused. I have and Activity and I want to check for all the time that the network connection is up (wifi or 3g). I implemented a simple Service and a BroadcastReveiver . here the code of the Service public class NetworkCheck extends IntentService { private final String CONNECTION = "connection"; public NetworkCheck(String name) { super(name); } @Override protected void onHandleIntent(Intent workIntent) { ConnectivityManager conMgr =