美文网首页
ButterKnife 8.0.1

ButterKnife 8.0.1

作者: 一洼世界 | 来源:发表于2016-09-21 09:24 被阅读47次
  1. http://blog.csdn.net/afanyusong/article/details/51505976
8.0.1变更:
   @InjectView -> @BindView
   @InjectViews -> @BindViews
   ButterKnife.inject(this) -> ButterKnife.bind(this)

   ButterKnife.reset(this) ->  

   private Unbinder unbinder; 
   unbinder = ButterKnife.bind(this, view); 
   @Override
   public void onDestroyView() {
       unbinder.unbind();
       super.onDestroyView();
   }

相关文章

网友评论

      本文标题:ButterKnife 8.0.1

      本文链接:https://www.haomeiwen.com/subject/ayxzsttx.html