public boolean checkInternectConnection() {
try {
InetAddress inAddress= InetAddress.getByName("http://google.com");
if (inAddress.equals("")) {
return false;
} else {
return true;
}
} catch (Exception e) {
return false;
}
}
böyle bişey buldum google a bağlanmaya çalışıyor sonuç boş ise hata mesajı verirsiniz sonuç var ise uygulama açılır herşey uygulama başlangıcında olur işinizi görür gibi.
Not: Kodu denemedim.