Skip to main content

How to Check Internet Connectivity Programmatically

Most of Android Applications use Internet Connection for Performing their Task .So here is Some code Snippet to Check whether the App is Connected to Internet Connection Or Not?

So lets Start :-


Step 1:  First we Create a Utility Class fro Checking Internet Connection 

ApplicationUtility.Java

 public class ApplicationUtility {  
   ConnectivityManager connectivityManager;  
   NetworkInfo info;  
   public boolean checkConnection(Context context) {  
     boolean flag = false;  
     try {  
       connectivityManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);  
       info = connectivityManager.getActiveNetworkInfo();  
       if (info.getType() == ConnectivityManager.TYPE_WIFI) {  
         System.out.println(info.getTypeName());  
         flag = true;  
       }  
       if (info.getType() == ConnectivityManager.TYPE_MOBILE) {  
         System.out.println(info.getTypeName());  
         flag = true;  
       }  
     } catch (Exception exception) {  
       System.out.println("Exception at network connection....."  
           + exception);  
     }  
     return flag;  
   }  
 }  



Step 2:

Now we can use this Utility Class to Check Internet Connection from our Activity For Ex in Splash.Java we want to Check Internet Connection. If It return true than go to next Login Activity else Show Message to user that Internet Not Connected :


  boolean checkConnection=new ApplicationUtility().checkConnection(this);  
     if (checkConnection) {  
       // start activity or do whatever you want  
     } else {  
       Toast.makeText(Splash.this, "connection not found...plz check connection", Toast.LENGTH_SHORT).show();  
     }  
   }  
So using this you can Check the App is Connected to Internet or Not.









Comments

Popular posts from this blog

How to Download Apk file from Url and Install Programmatically

In this post we learn about download apk file from server or website and then install it Programmatically in Phone. Sometimes we have to download external apk file from server and then install if downloading successfully finished.For this we use AsyncTask class  for background process. So here is Code Snippet for this task.Lets Start :- Before this we have to add these Permissions in Manifest.xml file : <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> DownloadNewVersion.java class DownloadNewVersion extends AsyncTask<String,Integer,Boolean> { @Override protected void onPreExecute() { super.onPreExecute(); bar = new ProgressDialog(getActivity()); bar.setCancelable(false); bar.setMessage("Downl...

Working with Android 11 (Changes and Security Features)

 Hello everyone , I am here with new article which is hot topic nowadays "Android 11" .The stable version of Android.  Android 11 is the eleventh major release and 18th version of Android, the mobile operating system developed by the Open Handset Alliance led by Google. It was released on September 8, 2020.It is comes with many security features and other features as well . And it is now compulsory in play store  to upload new apps with API lavel 30 which is compatible with Android 11 and from November onwards old apps also have to update with API 30 .Some other guidelines you can check out from here . Play Store Guidelines So its clear that we have to update our apps with API level 30 .But Android 11 comes with some changes as well which we have to do in our projects. For example from Android developer site "Android 11 (API level 30) further enhances the platform, giving better protection to app and user data on external storage. ". Scoped storage enforcement: Apps...

How to Hide or Show Toolbar While Scrolling

Sometimes we have requirement for hiding the toolbar when some list is scroll .In this post we will learn how to hide when scroll down the list and show when scroll upside in Android Application.For this we have to follow some steps :- Step 1: Create a ToolBar separately for use it in an entire application with name toolbar.xml <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:background="?attr/colorPrimary" app:popupTheme="@style/ThemeOverlay.AppCompat.Light" app:titleTextColor="#FFFFFF" app:layout_scrollFlags="scroll|enterAlways" /> set this flag to toolBar app:layout_scrollFlags="scroll|enterAlways" app:layout_scrollFlags a...