Home | History | Annotate | Download | only in articles

Lines Matching full:application

28 is an "Application Not Responding" (ANR) dialog.</p>
35 to design responsiveness into your application so the system never displays
39 application is not responding and provides guidelines for ensuring that your
40 application stays responsive. </p>
45 <p>Generally, the system displays an ANR if an application cannot respond to
46 user input. For example, if an application blocks on some I/O operation
63 <p>In Android, application responsiveness is monitored by the Activity Manager
65 for a particular application when it detects one of the following
80 This means anything your application is doing in the UI thread that
82 application is not giving itself a chance to handle the input event or intent
153 Designing your application in this way will allow your app's UI thread to remain
164 application should start an {@link android.app.IntentService} if a
178 slowness in an application. As such, here
180 make your application seem responsive to users:</p>
183 <li>If your application is doing work in the background in response to
190 <li>If your application has a time-consuming initial setup phase, consider
194 the application is frozen.</li>