android asynctask video tutorial with example

2
Android AsyncTask Video Tutorial with Example This Video Tutorial is on Android AsyncTask. AsyncTask is an abstract class in which implementation is hidden and only functioning is visible to user. This class allows us to perform long/background operations and generates its result on the main UI thread, which helps us to make our application responsive every time. We can use AsyncTask class by extending AsyncTask<String, String, String> and by execute method we will start the background thread. AsyncTask is executed with four steps: 1. onPreExecute 2. doInBackground 3. onProgressUpdate 4. onPostExecute Three parameters for AsyncTask: 1. Params 2. Progress 3. Result

Upload: ashish-bisht

Post on 08-Feb-2017

4 views

Category:

Technology


1 download

TRANSCRIPT

Page 1: Android AsyncTask Video Tutorial with Example

Android AsyncTask Video Tutorial with Example

This Video Tutorial is on Android AsyncTask. AsyncTask is an abstract class in which implementation is hidden and only functioning is visible to user.

This class allows us to perform long/background operations and generates its result on the main UI thread, which helps us to make our application responsive every time.

We can use AsyncTask class by extending AsyncTask<String, String, String> and by execute method we will start the background thread.

AsyncTask is executed with four steps:1. onPreExecute2. doInBackground3. onProgressUpdate4. onPostExecute

Three parameters for AsyncTask:1. Params2. Progress3. Result

For more important & helpful Android learning resources click here Android AsyncTask Video Tutorial with Example

Apart from this, you can also ask questions & look for various Android Programming queries along with their solutions including Dotnet, IOS, PHP, Javascript, Web Development & Android Programming blogs etc as it is an effective technology forum also.