Im trying to check connection to the internet or if the device is connected to a wireless network.But can not resolved getSystemService error is occured. Any advice ?
Full code is below,
public boolean isConnected(){
ConnectivityManager cm =(ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo networkInfo =cm.getActiveNetworkInfo();
if(networkInfo!=null && networkInfo.isConnectedOrConnecting()){
return true;
}
else{
return false;
}
}
Thanks in advance!