is there any broadcast receiver ( or services )that continuously check internet connectivity during the app are stay running. so whenever there are loose connectivity i got some message of loose connectivity.
i know ConnectivityManager
private boolean isNetworkAvailable() {
ConnectivityManager connectivityManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeNetworkInfo = connectivityManager
.getActiveNetworkInfo();
return activeNetworkInfo != null;
}
is the class by which we can check that is there connect with internet or not ? but i need to check instantly...