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,可以在內部類別中綁定