المتابعون

الثلاثاء، 4 فبراير 2020

لا يوجد اتصال انترنت

private boolean isNetworkConnected() {
    ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
    NetworkInfo info =cm.getActiveNetworkInfo();


    if (info == null) {
        Intent intent =new Intent(NoInternet.this,NoInternet.class);
        startActivity(intent);
        Toast.makeText(getApplicationContext(), "للأسف لا يوجد لديك اتصال بالانترنت", Toast.LENGTH_SHORT).show();
        return false;
    }else{
        Intent intent =new Intent(NoInternet.this,MainActivity.class);
        startActivity(intent);
    }
    return true;
}

ليست هناك تعليقات:

إرسال تعليق

اعلان