赞
踩
ButterKnife是Jake Wharton开发的一款Android框架,用于Android系统的View注入框架,主要用于简化代码。减少在进行控件绑定以及控件事件编写时的重复编写,可用来取代findViewById以及setOnClickListener。
在使用ButterKnife之前,需要先添加以下的依赖:
buildscript {
repositories {
google()
jcenter()
}
dependencies {
...
classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
android {
//...
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
//...
implementation 'com.jakewharton:butterknife:10.2.2'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.2'
}
以上所使用的ButterKnife是最新版本10.0.2,相关配置信息可到这里去查询:作者github
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。