ButterKnife 8 的使用:
1.进行绑定:ButterKnife.bind(this,view);
2.绑定控件使用@BindView:
@BindView(R.id.recyclerview)
RecyclerViewrecyclerView;
3.解绑:
private Unbinder unbinder;
unbinder= ButterKnife.bind(this,view);
在Destory中加入unbinder.unbind();
ButterKnife 8 的使用:
1.进行绑定:ButterKnife.bind(this,view);
2.绑定控件使用@BindView:
@BindView(R.id.recyclerview)
RecyclerViewrecyclerView;
3.解绑:
private Unbinder unbinder;
unbinder= ButterKnife.bind(this,view);
在Destory中加入unbinder.unbind();
本文标题:ButterKnife 8 的使用:
本文链接:https://www.haomeiwen.com/subject/zxjydttx.html
网友评论