Check Internet Permission Android Code Example


Example 1: android internet permission

//Add this to app manifest <uses-permission android:name="android.permission.INTERNET" />

Example 2: android internet permission

<uses-permission android:name="android.permission.INTERNET" />

Example 3: Android check internet

/**  * @author Pratik Butani  */ public class InternetConnection {      /**      * CHECK WHETHER INTERNET CONNECTION IS AVAILABLE OR NOT      */     public static boolean checkConnection(Context context) {         final ConnectivityManager connMgr = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);          if (connMgr != null) {             NetworkInfo activeNetworkInfo = connMgr.getActiveNetworkInfo();              if (activeNetworkInfo != null) { // connected to the internet                 // connected to the mobile provider's data plan                 if (activeNetworkInfo.getType() == ConnectivityManager.TYPE_WIFI) {                     // connected to wifi                     return true;                 } else return activeNetworkInfo.getType() == ConnectivityManager.TYPE_MOBILE;             }         }         return false;     } }

Example 4: how-to-check-internet-connection-in-android

public static boolean isNetworkConnected(Context context) {         ConnectivityManager cm = (ConnectivityManager) context                 .getSystemService(Context.CONNECTIVITY_SERVICE);         NetworkInfo ni = cm.getActiveNetworkInfo();         if (ni == null) {             // There are no active networks.             return false;         } else {             return true;         }      }

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?