首页 > 代码库 > Butterknife

Butterknife

快速找到控件并且绑定的方法

首先加载ButterKnife 类库,studio中直接搜索添加

技术分享

 

技术分享

 

接下来安装插件

1.安装插件 安装完插件之后重启

技术分享

 

2. 技术分享

 

3.按照标记..选择

技术分享

 

4.

技术分享

如果需要设置点击事件,在这里可以直接选择 ,..下面还有一个CreateViewHolder  这个选项是在设置适配器的时候选择,可以快速的帮助我们生成一个适配器

技术分享

 

最后生成的样子..可以直接在生成的方法里做操作 ,注意这里的方法是可以不带View参数的

技术分享

最后在Gradle文件中配置

projectGradle

 

classpath ‘com.neenbedankt.gradle.plugins:android-apt:1.8‘ // 添加这行

技术分享

 

Modue apply plugin: ‘com.neenbedankt.android-apt‘ //添加这行

dependencies {

compile fileTree(include: [‘*.jar‘], dir: ‘libs‘)

testCompile ‘junit:junit:4.12‘

compile ‘com.android.support:appcompat-v7:23.3.0‘

compile ‘com.jakewharton:butterknife:8.2.1‘ //这是添加的类库

apt ‘com.jakewharton:butterknife-compiler:8.2.1‘ //添加这行

}

技术分享

 

 

 

 

添加成功后,当前界面中的所有的控件 都是一步搞定

技术分享



来自为知笔记(Wiz)


Butterknife