Advertisement
Guest User

Untitled

a guest
Sep 4th, 2015
768
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public static boolean isNetworkAvailable() {
  2. ConnectivityManager connectivityManager
  3. = (ConnectivityManager) SdkContext.getApplicationContext().getSystemService(Context.CONNECTIVITY_SERVICE);
  4. NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo();
  5. return activeNetworkInfo != null && activeNetworkInfo.isConnected();
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement