android studio3.0以上版本中,butterknife的导入有所改变
dependencies {
compile 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
}
不需要在project的根build.gradle再进行其他的导入。
如果以上都确认无误,但发现onClick和bindView都无效的情况,检查下以上的依赖是不是设置在其他module中,如果是,那么问题基本找到了。
比如module A依赖module B,module B导入butterknife,那么A是无法直接使用butterknife的,需要在A的build.gradle里面加入如下依赖:
dependencies {
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
}