自定义View报错Caused by: java.lang.NoSuchMethodException

报错提示代码:

Caused by: java.lang.NoSuchMethodException: [class android.content.Context, interface android.util.AttributeSet]

错误原因

该错误只要是在自定义view时,没有重写含有(Context context,AttributeSet attrs)的构造器

解决方法

重写构造器即可
public ControlKeyboardLinearLayout(Context context,AttributeSet attrs){ super(context, attrs); }

你可能感兴趣的:(自定义View报错Caused by: java.lang.NoSuchMethodException)