
AsyncTask is a helper abstract class used to execute short operations ( few seconds ) in a non-ui thread. In other words, AsyncTask is a helper class used to create asynchronous tasks. An asynchronous task is defined by three generic types called Params, Progress and Result. Params: Params is used to send arguments to...