引用cn.bertsir.zbarLibary:zbarlibary闪退

错误内容:TinkerUncaughtHandler catch exception:java.lang.RuntimeException: Unable to start activity ComponentInfo{com.sinoservices.scantest/cn.bertsir.zbar.QRActivity}: android.view.InflateException: Binary XML file line #19: Binary XML file line #19: Error inflating class cn.bertsir.zbar.view.ScanView

分析原因:cn.bertsir.zbarLibary:zbarlibary里有个layout名称为view_scan,项目里有同名,使得项目找不到cn.bertsir.zbarLibary:zbarlibary对应的layout,导致闪退。

解决方法:将项目的view_scan改名字就好了。

android.view.InflateException: Binary XML file line #19: Error inflating class

可能出现原因:

  1. android 的xml文件,如果该行出现字母书写的错误,比如关键词Button,就会在编译的时候发生错误。

  1. 该行没有结束的标志,也就是缺少了。需要每个标签都有/进行结束。

  1. internet通信上图片过大也会报错。

  1. 自定义的控件存在bug(重点可以查看与第三方的layout冲突)

参考:https://zhidao.baidu.com/question/1989600089034989947.html

Caused by: android.view.InflateException: Binary XML file line #9: Binary XML file line #9: Error inflating class xxx

Caused by: android.view.InflateException: Binary XML file line #9: Error inflating class xxx

可能出现原因:setText内容要为String类型。

你可能感兴趣的:(Android问题,android)