AsyncTask Android
AsyncTask Android Asynctask(Asynchronous task) in android enable us to perform the task in Background thread giving us the way to separate our tedious work from UI Thread and publish our work back to UI thread after our work get completed. It has following method onPreExceute doInBackGround publishProgress onProgressUpdate onPostExceute Share on […]