美文网首页
ButterKnife 8 的使用:

ButterKnife 8 的使用:

作者: 街角的那只喵 | 来源:发表于2017-04-20 16:05 被阅读21次

    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