在自定义控件的过程中犯下的错,在调用有三个参数的构造方法时this(context,null,0);第二个参数为空,在Activity中 findViewById找到对应的控件时

在自定义控件的过程中犯下的错,在调用有三个参数的构造方法时this(context,null,0);第二个参数为空,在Activity中 findViewById找到对应的控件,在给控件设置点击事件的时候一直报空指针异常。这个问题一直困扰了好长的时间,今天终于在网上找到了答案。

  this(context,attrs,0);把属性值都写空了   

    public CustomSwitch(Context context, AttributeSet attrs) {
       this(context,attrs,0);
        //this(context,null,0);错误就出现在这里,坑爹啊
    }

    public CustomSwitch(Context context) {
       this(context,null);
    }

    public CustomSwitch(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        initView();
    }

小伙伴们,解决问题的那一刻,老夫是相当的激动,觉得自己怎么可以那么牛!

你可能感兴趣的:(自定义控件)