AsyncTask
Example:- We have AsyncTask name of MyTask.
Calling of a AsyncTask:-
MyTask myObj = new MyTask();
myObj.execute();
What is AsyncTask
AsyncTask have Four Main Method...
Example:- We have AsyncTask name of MyTask.
Calling of a AsyncTask:-
MyTask myObj = new MyTask();
myObj.execute();
What is AsyncTask
- The AsyncTask instance must be created in UI thread.
- .execute must be invoked on the UI thread.
AsyncTask have Four Main Method...
- onPreExecute()
- doInBackground()
- onProgressUpdate()
- onPostExecute()
- onPreExecute:-This method is called first when you start AsyncTask using objAsync.execute().And mostly this method is use for initializing dialog(ProgressDialog,CustomDialog) and showing.
- doInBackground:-The main purpose of AsyncTask is accomplished by this method.Any non-UI thread process is running in this method.Such as Rss Feed Reader,Image and video Uploading and Downloading.You cant handle your View in this method.Because this method is non-UI thread.While any background process is running if you want to handle UI therea are onProgressUpdate method. after completion of process this method send result to OnPostExecute.
- onProgressUpdate:-While backgrounding task is running ,you can handle your UI using this method .Such as status of downloading or uploading task.and this method is called from doInBackground.Using publishProgress() you can call onProgressUpdate method to update UI while process is running.
- onPostExecute: -This method is called after the background computation finishes.The result of background process in passed in this method as parameters.And now you can dismiss progress dialog ,to indicate that background task is completed.
No comments:
Post a Comment