Android ButterKnife框架的使用

  • Demo地址:https://github.com/jiutianbian/android_learn/tree/master/Testbutterknife

Android ButterKnife是什么?

Android ButterKnife是一个Android的依赖注入框架,它对应的的git地址和官网如下:

  • github地址:https://github.com/JakeWharton/butterknife
  • 官网:http://jakewharton.github.io/butterknife/

Android ButterKnife能解决什么问题?

如果不使用依赖注入框架,我们在开发过程中

  • 会写到大量的findViewById来初始化view
  • 会写到大量Listener,来监听View的各种操作事件,比如点击滑动等等
  • 会写到大量getResource方法来读取资源文件

这些代码简单重复,而且代码并不优雅,ButterKnife提供了通过注解的方式,来解决上面的这些问题,让我们的代码更专注于业务的核心逻辑。

Android ButterKnife具体该怎么使用?

一、导入依赖包

  • IDE和构建工具:androidstudio Gradle
  • ButterKnife版本号:8.6.0

找到gradle配置文件build.gradle(Module:app),注意是app的配置文件,然后在dependencies添加如下配置,然后如下图所示点击sync,重新下载并导入依赖的ButterKnife包

compile 'com.jakewharton:butterknife:(insert latest version)'
annotationProcessor 'com.jakewharton:butterknife-compiler:(insert latest version)'

二、绑定View

1. Activity中绑定view

ButterKnife可以通过BindView注解(最新版本,以前不同版本用的InjectView或Bind注解)进行绑定View,来替代冗长的findViewById代码

@BindView(R.id.tx_hello) TextView tx_hello;

之后在设置好布局之后,需要调用ButterKnife.bind(this)方法进行绑定:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    ButterKnife.bind(this);

    tx_hello.setText("你好,中国");
}

2. Fragment中绑定view

同Activy的绑定,但是由于Fragment有不一样的生命周期,当在onCreateView中同过bind方法重绑定后,需要在onDestroyView方法中同过unbind方法解除绑定,调用详细代码如下

@BindView(R.id.tx_hello2)
TextView tx_hello2;

private Unbinder unbinder;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    View view = inflater.inflate(R.layout.fragment_main, container, false);
    unbinder = ButterKnife.bind(this, view);

    tx_hello2.setText("你好中国2");
    return view;
}

@Override
public void onDestroyView() {
    super.onDestroyView();
    unbinder.unbind();
}

3. Adaptor中绑定view

Adaptor中经常会用到ViewHolder,来进行一些性能优化,减少一些不必要的重复操作,同样在ViewHolder也可以绑定View,详细代码如下

static class ViewHolder {
    @BindView(R.id.tx_hello3)
    TextView tx_hello3;

    public ViewHolder(View view) {
        ButterKnife.bind(this, view);
    }
}

4. 组合绑定多个View

ButterKnife可以通过BindViews将多个View绑定到一个组合中

@BindViews({ R.id.tx_hello, R.id.tx_nihao})
List nameViews;

然后通过apply方法进行View的组合操作

ButterKnife.apply(nameViews,INVISIBLE);

apply方法中的第二个参数是一个接口,这个接口需要自己实现

static final ButterKnife.Action INVISIBLE = new ButterKnife.Action() {
        @Override public void apply(View view, int index) {
            view.setVisibility(View.INVISIBLE);
        }
}

三、绑定事件

ButterKnife也可以绑定view上的各种事件,比如点击事件,长点击事件等等,事件较多,这里不一一介绍了,主要通过点击事件,长点击事件来说明一下,具体代码如下

@OnClick(R.id.btn_show)
public void click(View view) {
    ButterKnife.apply(nameViews,INVISIBLE);
}

@OnLongClick(R.id.btn_show)
public boolean longclick(View view) {
    ButterKnife.apply(nameViews,VISIBLE);
    return true;
}

四、绑定资源

ButterKnife也可以绑定资源文件,比如字符,颜色等等,具体代码如下

@BindString(R.string.hello_blank_fragment) String hello_blank_fragment;
@BindDrawable(R.drawable.ic_launcher)
Drawable ic_launcher;
@BindColor(R.color.colorAccent) int red; // int or ColorStateList field
@BindDimen(R.dimen.text_height) float text_height; // int (for pixel size) or float (for exact value) field

五、ButterKnife Zelezny插件

通过安装Androidstudio Plugins里面的Zelezny插件,我们可以快速的产生ButterKnife代码,具体请参考:http://blog.csdn.net/dreamlivemeng/article/details/51261170

你可能感兴趣的:(Android ButterKnife框架的使用)