Properly loading data from the web in Android
Today we’ll show you how to load data from the web an app. This must be done through an AsyncTask (or through a background thread, but we’ll demonstrate the former), in order to let the UI continue respond to the user. That is, because, the main thread of the app is running the UI thread, […]