Android App Development:Threading part 2: Async Tasks

In the previous post we saw one way to deal with threads in Android, which is by using Handlers. In this post we’ll see how to use another technique which is using AsyncTask class. AsyncTask is an abstract class that provides several methods managing the interaction between the UI thread and the background thread. it’s … Continue reading Android App Development:Threading part 2: Async Tasks