Add this method to your activity:
private boolean isNetworkAvailable() {
ConnectivityManager connectivityManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeNetworkInfo = connectivityManager
.getActiveNetworkInfo();
return activeNetworkInfo != null;
}
and in onCreate or before you load your feed check like this:
if (!isNetworkAvailable()) {
Toast.makeText(
Player.this,
"No active internet connection found.",
Toast.LENGTH_LONG).show();
finish();
return;
}