How to avoid an ANR?

Submitted by: Administrator
A follow-up to the previous question, there are a number of possible answers here. What you want to hear is that you want as little work done as possible on the main thread, also known as the "UI thread". Since that is the core single thread that your application runs on, you would want to keep activities that require more complex computations or network and database connections, for example, on separate worker threads so as not to slow down the main thread.
Submitted by:

Read Online Mobile Developer Job Interview Questions And Answers