Hi,
I am trying to find a way to get the connectivity state in a service, found the code below but getSystemService is red underlined.
Thanks
public boolean isOnline() {
ConnectivityManager cm = (ConnectivityManager) this.getSystemService(Context.CONNECTIVITY_SERVICE);
return cm.getActiveNetworkInfo().isConnectedOrConnecting();
}
I am trying to find a way to get the connectivity state in a service, found the code below but getSystemService is red underlined.
Thanks
public boolean isOnline() {
ConnectivityManager cm = (ConnectivityManager) this.getSystemService(Context.CONNECTIVITY_SERVICE);
return cm.getActiveNetworkInfo().isConnectedOrConnecting();
}