Skip to content

Instantly share code, notes, and snippets.

View DheCastro's full-sized avatar
🏠
Working from home

Dhellano de Castro DheCastro

🏠
Working from home
View GitHub Profile
@DheCastro
DheCastro / verificaconexao
Created July 12, 2018 23:45
Verifica conexão no Android
/**
* Método responsável pela verificação da conexão com a internet
* @return
*/
public boolean isOnline() {
try {
ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = cm.getActiveNetworkInfo();
return netInfo != null && netInfo.isConnectedOrConnecting();
}