View view = View.inflate(context, R.layout.news_item_pager, null);
ButterKnife.bind(this, view);
View rollView = View.inflate(context, R.layout.layout_roll_view, null);
ButterKnife.bind(this,rollView);
这样写为什么报错 butterknife怎么绑定多个view?
世界只因有你2017-06-30 09:55:10
在同一个类中绑定了多个View的情况下,注解处理器会在每一个View中寻找绑定引用对应的id名,找不到就会报错。
建议不要在同一个类中绑定多个View,可以在内部类中绑定