Tell me how to avoid ANR status?

Submitted by: Murtaza
Android allows the system to protect the applications that are not responsive for a period of time by displaying a status called as ANR (Application not responding). Methods should use the main thread for work, as it takes long time for the main thread to complete the task. The work should be divided and another thread named as child thread be used for executing more tasks, as it takes less time. Main thread should provide a handler for child threads to post back upon completion.
Submitted by: Murtaza

Read Online Android Software Engineer Job Interview Questions And Answers