onCreate içerisine ;
if (isNetworkConnected() == false) { Toast.makeText(this, "İnternet Bağlantısı Yok", LENGTH_SHORT).show(); } else { }Class içerisine yazılacak kod ;
private boolean isNetworkConnected() { ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); return cm.getActiveNetworkInfo() != null; }