Advertisement
minafaw3

ConnectionDetector

Oct 20th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. package com.imaadv.leaynik.Activities;
  2.  
  3. import android.content.Context;
  4. import android.net.ConnectivityManager;
  5. import android.net.NetworkInfo;
  6.  
  7. public class ConnectionDetector {
  8.  
  9. private Context _context;
  10.  
  11. public ConnectionDetector(Context context){
  12. this._context = context;
  13. }
  14.  
  15. /**
  16. * Checking for all possible internet providers
  17. * **/
  18. public boolean isConnectingToInternet(){
  19. ConnectivityManager connectivity = (ConnectivityManager) _context.getSystemService(Context.CONNECTIVITY_SERVICE);
  20. if (connectivity != null)
  21. {
  22. NetworkInfo[] info = connectivity.getAllNetworkInfo();
  23. if (info != null)
  24. for (int i = 0; i < info.length; i++)
  25. if (info[i].getState() == NetworkInfo.State.CONNECTED)
  26. {
  27. return true;
  28. }
  29.  
  30. }
  31. return false;
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement