Do you know what is ANR, and why does it happen?

Submitted by: Muhammad
‘ANR' in Android is ‘Application Not Responding.' It means when the user is interacting with the activity, and the activity is in the onResume() method, a dialog appears displaying “application not responding.”

It happens because we start a heavy and long running task like downloading data in the main UI thread. The solution of the problem is to start your heavy tasks in the backbround using Async Task class.
Submitted by: Muhammad

Read Online Android Developer Job Interview Questions And Answers