Binary XML file line Error inflating class解决办法以及自定义view的基本实现

前端之家收集整理的这篇文章主要介绍了Binary XML file line Error inflating class解决办法以及自定义view的基本实现前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

之前跟着坑爹的课本写了一个画图的功能,一直只能setContentView(new MyBitmapView(this)),不能再加其他东西了,之后用layout布局一直报这个错,后来一查是view的三个构造函数没有实现。

所以自定义view一定要

onDraw()

onMeasure()

public MyBitmapView(Context context)

public MyBitmapView(Context context,AttributeSet attrs)

public MyBitmapView(Context context,AttributeSet attrs,int defStyleAttr)

都要实现才行

所以看书有时候给的代码的延展性很差。。。。还要自己弄懂

原文链接:https://www.f2er.com/xml/296948.html

猜你在找的XML相关文章