专栏简介
接上文【Android ANR简介】内容,深入探索input 类型的ANR问题产生原理,至于解决此类ANR的进阶内容会在下篇【稳定性问题ANR-input进阶】中详细介绍。
input ANR简介
Android app的input事件都是有主线程消费的,假设主线程有耗时函数执行,就会产生ANR问题;但是主线程就不能执行耗时函数吗?答案是能;同理解释了一下主线程中的耗时函数只要不碰到ANR问题的检测诱因,就不会产生ANR;假设一个APP不接受任何广播,不处理任何input事件(如后台程序),并且已经启动就绪之后,这个时候主线程执行耗时操作永远不会产生ANR。同理可知,广播和input事件也是ANR问题的一个检测点。再次抽象,ANR问题是系统定义的一些场景必须在既定的时间内处理完成,从loop中清理timeout消息,否则timeout消息一旦执行,就会触发ANR问题。
原理
原理图占位
AMS 中的appNotResponding方法由inputDispatchingTimedOut调用,接着反推是谁调用的这个方法。
/*** Handle input dispatching timeouts.* @return whether input dispatching should be aborted or not.*/boolean inputDispatchingTimedOut(ProcessRecord proc, String activityShortComponentName,ApplicationInfo aInfo, String parentShortComponentName,WindowProcessController parentProcess, boolean aboveSystem,TimeoutRecord timeoutRecord) {try {Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "inputDispatchingTimedOut()");....mAnrHelper.appNotResponding(proc, activityShortComponentName, aInfo,parentShortComponentName, parentProcess, aboveSystem, timeoutRecord,/*isContinuousAnr*/ true);}
...