美文网首页
Android ANR日志分析

Android ANR日志分析

作者: 林锦洲 | 来源:发表于2020-09-09 10:49 被阅读0次

    什么是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

    https://zhuanlan.zhihu.com/p/50107397

    相关文章

      网友评论

          本文标题:Android ANR日志分析

          本文链接:https://www.haomeiwen.com/subject/tmqeektx.html