首先在项目中引入butterknife的包
在项目的build.gradle中加入下边一行
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' //增加这一句
在Module的bulid.gradle中加入下两行
apply plugin: 'com.neenbedankt.android-apt'//增加这一句
apt 'com.jakewharton:butterknife-compiler:8.4.0'//增加这一句
然后就可以在项目中开心的使用啦