解决android.view.InflateException: Binary XML file line #8: Error inflating class

解决异常:android.view.InflateException: Binary XML file line #8: Error inflating class com.match.txtview


现象:在xml布局文件中调用自己写的view时报了这个错误,试了好多办法都不行,我发现继承TextView时少写了一个构造方法public TxtWordView(Context context, AttributeSet attrs)。

原因(百度的)

1、自定义view需要注意构造函数,所有的xml布局,初始化时构造函数使用的都是 (Context context, AttributeSet attrs) {两个参数的。如果没有该构造函数会报错。

2、如果有自定义属性,则需要在当前xml中引入工程包名,否则自定义属性会报错。

解决方法:

加上这两个方法即可:

//缺少此方法会报错:android.view.InflateException: Binary XML file line #8: Error inflating class

public TxtWordView(Context context) {
	super(context);
}	
public TxtWordView(Context context, AttributeSet attrs) {
	super(context, attrs);
}


你可能感兴趣的:(java,android)