Android中的UI响应时间限制是多少?

时间:2014-04-20 13:28:35

标签: android

我是Android开发者的新手,我想知道android中的UI响应时间限制,如果有人知道那么请告诉我。

谢谢你。

3 个答案:

答案 0 :(得分:7)

根据参考页面(http://developer.android.com/training/articles/perf-anr.html),在获得ANR(应用程序无响应)之前 5秒

答案 1 :(得分:1)

如果按响应时间限制,您的意思是,Android操作系统确定应用程序未运行之前的最长时间,那么:5秒!

答案 2 :(得分:1)

根据android开发者论坛: -

 - No response to an input event (such as key press or screen touch
   events) within 5 seconds.

 - A BroadcastReceiver hasn't finished executing within 10 seconds

一般情况下,当我们的应用程序在UI线程中执行长时间运行的任务然后安装在弹出窗口下方的android OS时发生: -

enter image description here

https://developer.android.com/topic/performance/vitals/anr.html

https://developer.android.com/training/articles/perf-anr.html