ButterKnife java.lang.NullPointerException

ButterKnife库(一个高效的工具库)

作用是替代 findViewById()最基本的使用,它不会干扰软件运行效率,而且看着高效(通俗点:代码比较干净整洁)

在新建项目中有应用(com.android.application)和Android库(com.android.library)两个Module,引入ButterKnife,可能会碰到空指针异常,并且这个空指针报错信息一般都是

Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.TextView.setText(java.lang.CharSequence)' on a null object reference

这样的类似于找不到布局中的id,或者相应的id为null;这个时候一般是配置出了问题,检查我们配置ButterKnife的时候是否遗漏了什么。

配置ButterKnife的时候,首先要在项目的根build.gradle加上这个

dependencies {
        classpath "com.jakewharton:butterknife-gradle-plugin:9.0.0-rc2"
    }

 然后在library的build.gradle加上

dependencies {
api "com.jakewharton:butterknife:9.0.0-rc2"
annotationProcessor "com.jakewharton:butterknife-compiler:9.0.0-rc2"
}

最后在app.gradle加上

dependencies {
    annotationProcessor "com.jakewharton:butterknife-compiler:9.0.0-rc2"

}

 最后注意下面几项即可:
1、在Activity 类中绑定 :ButterKnife.bind(this); 必须在setContentView(); 之后绑定;且父类bind绑定后,子类不需要再bind。
2、在非Activity 类(eg:Fragment、ViewHold)中绑定: ButterKnife.bind(this,view);这里的this不能替换成getActivity()。
3、在Activity中不需要做解绑操作,在Fragment 中必须在onDestroyView()中做解绑操作。
4、使用ButterKnife修饰的方法和控件,不能用private or static 修饰,否则会报错。错误: @BindView fields must not be private or static. (com.zyj.wifi.ButterknifeActivity.button1)
5、setContentView()不能通过注解实现。(其他的有些注解框架可以)
6、使用Activity为根视图绑定任意对象时,如果你使用类似MVC的设计模式你可以在Activity 调用ButterKnife.bind(this, activity),来绑定Controller。
7、使用ButterKnife.bind(this,view)绑定一个view的子节点字段。如果你在子View的布局里或者自定义view的构造方法里 使用了inflate,你可以立刻调用此方法。或者,从XML inflate来的自定义view类型可以在onFinishInflate回调方法中使用它。

 

 

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