当你的项目越做越复杂,或者你的用户达到某个数量级的时候,你的代码不小心出现细小的问题,你会收到各种各样的bug,其中ANR的问题你一定不会陌生。本文将详细讲解ANR的类型、出现的原因、ANR案例详细分析、经典的案例。
定义
ANR(Application Not Responding)
应用程序无响应。如果你应用程序在UI线程被阻塞太长时间,就会出现ANR,通常出现ANR,系统会弹出一个提示提示框,让用户知道,该程序正在被阻塞,是否继续等待还是关闭。
ANR类型
出现ANR的一般有以下几种类型:
1:KeyDispatchTimeout(常见)
input事件在5S
内没有处理完成发生了ANR。
logcat日志关键字:Input event dispatching timed out
2:BroadcastTimeout
前台Broadcast:onReceiver在10S
内没有处理完成发生ANR。
后台Broadcast:onReceiver在60s
内没有处理完成发生ANR。
logcat日志关键字:Timeout of broadcast BroadcastRecord
3:ServiceTimeout
前台Service:onCreate
,onStart
,onBind
等生命周期在20s
内没有处理完成发生ANR。
后台Service:onCreate
,onStart
,onBind
等生命周期在200s
内没有处理完成发生ANR
logcat日志关键字:Timeout executing service
4:ContentProviderTimeout
ContentProvider 在10S
内没有处理完成发生ANR。 logcat日志关键字:timeout publishing content providers
ANR出现的原因
1:主线程频繁进行耗时的IO操作:如数据库读写
2:多线程操作的死锁,主线程被block;
3:主线程被Binder 对端block;
4:System Server
中WatchDog出现ANR;
5:service binder
的连接达到上线无法和和System Server通信
6:系统资源已耗尽(管道、CPU、IO)
ANR案例分析过程
我们将一步一步分析ANR,这个过程更加理解如何找到问题、分析问题以及解决问题。
一、 查看events_log
查看mobilelog文件夹下的events_log,从日志中搜索关键字:am_anr
,找到出现ANR的时间点、进程PID、ANR类型。
如日志:
- 07-20 15:36:36.472 1000 1520 1597 I am_anr : [0,1480,com.xxxx.moblie,952680005,Input dispatching timed out (AppWindowToken{da8f666 token=Token{5501f51 ActivityRecord{15c5c78 u0 com.xxxx.moblie/.ui.MainActivity t3862}}}, Waiting because no window has focus but there is a focused application that may eventually add a window when it finishes starting up.)]
- 复制代码
从上面的log我们可以看出: 应用com.xxxx.moblie
在07-20 15:36:36.472
时间,发生了一次KeyDispatchTimeout
类型的ANR,它的进程号是1480
. 把关键的信息整理一下:
ANR时间:07-20 15:36:36.472
进程pid:1480
进程名:com.xxxx.moblie
ANR类型:KeyDispatchTimeout
我们已经知道了发生KeyDispatchTimeout
的ANR是因为 input事件在5秒内没有处理完成
。那么在这个时间07-20 15:36:36.472
的前5秒,也就是(15:36:30 ~15:36:31
)时间段左右程序到底做了什么事情?这个简单,因为我们已经知道pid了,再搜索一下pid = 1480
的日志.这些日志表示该进程所运行的轨迹,关键的日志如下:
- 07-20 15:36:29.749 10102 1480 1737 D moblie-Application: [Thread:17329] receive an intent from server, action=com.ttt.push.RECEIVE_MESSAGE
- 07-20 15:36:30.136 10102 1480 1737 D moblie-Application: receiving an empty message, drop
- 07-20 15:36:35.791 10102 1480 1766 I Adreno : QUALCOMM build : 9c9b012, I92eb381bc9
- 07-20 15:36:35.791 10102 1480 1766 I Adreno : Build Date : 12/31/17
- 07-20 15:36:35.791 10102 1480 1766 I Adreno : OpenGL ES Shader Compiler Version: EV031.22.00.01
- 07-20 15:36:35.791 10102 1