Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static boolean isNetworkAvailable() {
- ConnectivityManager connectivityManager
- = (ConnectivityManager) SdkContext.getApplicationContext().getSystemService(Context.CONNECTIVITY_SERVICE);
- NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo();
- return activeNetworkInfo != null && activeNetworkInfo.isConnected();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement