Caused by: android.view.InflateException: Binary XML file line #44: Error inflating class com.androi

来源:互联网 发布:ad7606 数据手册 编辑:程序博客网 时间:2024/06/10 00:25

创建View时候,写三个构造函数

public MyWidgetView(Context context) {        super(context);    }    public MyWidgetView(Context context, AttributeSet attrs) {        super(context, attrs);    }    public MyWidgetView(Context context, AttributeSet attrs, int defStyle) {        super(context, attrs, defStyle);    }

2016.04.18

error:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.android.launcher/com.android.launcher2.Launcher}: android.view.InflateException: Binary XML file line #39: Error inflating class com.android.launcher2.MyWidgetView

包名与xml中default_workspace.xml中包名一致

0 0
原创粉丝点击