Butterknife8.4.0的一些问题
文章目录
写在前面:
在 github 上 butterknife 的 star 有 11000+ 为啥有这么多人用这个插件 两点: 1、自动化 2、有人更新和维护
GRADLE
根目录的 build.gradle 也就是 project 级
1buildscript {
2 repositories {
3 mavenCentral()
4 }
5 dependencies {
6 classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
7 }
8}
module 级别
1apply plugin: 'android-apt'
2
3android {
4 ...
5}
6
7dependencies {
8 compile 'com.jakewharton:butterknife:8.4.0'
9 apt 'com.jakewharton:butterknife-compiler:8.4.0'
10}
基本的注入我想大部分人都知道
ButterKnife.bind(this)
这里可以是 View,Activity 等等
还支持 Android annotations 的几个注解
1@Optional //可选
2@Nullable //可能为空
在 8.4.0 中最大的改动可能就是使用 R2 代替 R 文件 我觉得这个可能是为了自动生成 R 文件经常出现问题的解决方案 应该是和 Android Studio 中的 instant run 有冲突
变量的注入
1@BindView
2TextView textView;
3
4@BindString(R.string.title)
5String title;
6
7@BindDrawable(R.drawable.graphic)
8Drawable graphic;
9
10@BindColor(R.color.red)
11int red;
12
13@BindDimen(R.dimen.spacer) Float spacer; // int (for pixel size) or float (for exact value) field
上面来自于官网
可以修改 View 的属性 An Android Property can also be used with the apply method.
1ButterKnife.apply(nameViews, View.ALPHA, 0.0f);
onclick 事件
1//单View的写法
2@OnClick(R.id.submit)
3public void submit(View view) {
4 // TODO submit data to server...
5}
6
7//也可以不写View参数
8@OnClick(R.id.submit)
9public void submit() {
10 // TODO submit data to server...
11}
12
13//也可以将参数进行强转
14@OnClick(R.id.submit)
15public void sayHi(Button button) {
16 button.setText("Hello!");
17}
18
19//也可以是一个数组,这里批量注入
20@OnClick({ R.id.door1, R.id.door2, R.id.door3 })
21public void pickDoor(DoorView door) {
22 if (door.hasPrizeBehind()) {
23 Toast.makeText(this, "You win!", LENGTH_SHORT).show();
24 } else {
25 Toast.makeText(this, "Try again", LENGTH_SHORT).show();
26 }
27}
这个暂时没有试验,稍后试验
1// Custom views can bind to their own listeners by not specifying an ID.
2public class FancyButton extends Button {
3 @OnClick
4 public void onClick() {
5 // TODO do something!
6 }
7}
一些特殊的点击事件
1@OnItemSelected(R.id.list_view)
2void onItemSelected(int position) {
3 // TODO ...
4}
5
6@OnItemSelected(value = R.id.maybe_missing, callback = NOTHING_SELECTED)
7void onNothingSelected() {
8 // TODO ...
9}
官网还有一个 bouns,看起来是省去了强转,可以用在 dialog 等地方
BONUS
Also included are findById methods which simplify code that still has to find views on a View, Activity, or Dialog. It uses generics to infer the return type and automatically performs the cast.
1View view = LayoutInflater.from(context).inflate(R.layout.thing, null);
2TextView firstName = ButterKnife.findById(view, R.id.first_name);
3TextView lastName = ButterKnife.findById(view, R.id.last_name);
4ImageView photo = ButterKnife.findById(view, R.id.photo);
Add a static import for ButterKnife.findById and enjoy even more fun.
android studio 中有插件哦 搜索 Butterknife 默认快捷键是 alt+insert 然后选 Butterknife 那个 当然有一个 ctrl+shift+B 的快捷键,应该是和其他的有冲突了
暂时先这样