How to use Handler in AsynkTask in android

As per android docs here

An asynchronous task is defined by a computation that runs on a
background thread and whose result is published on the UI thread.

And loading data from URL with Handler is not a good thing. Instead use Executor or ThreadPoolExecutor to do heavy background tasks.

Leave a Comment