Do you know what are Handlers?

Submitted by: Muhammad
Handlers are objects for managing threads. It receives messages and writes code on how to handle the message. They run outside of the activity's lifecycle, so they need to be cleaned up properly or else you will have thread leaks.
Handlers allow communicating between the background thread and the main thread.
A Handler class is preferred when we need to perform a background task repeatedly after every x seconds/minutes.
Submitted by: Muhammad

Read Online Android Developer Job Interview Questions And Answers