我正在使用Butterknife绑定(bind) View 。当绑定(bind)组多个 View 时
Acting on Multiple Views In a List一样,@BindViews无法使用。见下图:

android - 无法在Butterknife中解析符号BindViews-LMLPHP

我正在尝试下面的代码:

@BindViews({ R.id.edtOne, R.id.edtTwo, R.id.edtThree })
List<EditText> editTextsList;

我该如何解决?

最佳答案

确保您更新到ButterKnife的最新版本:

版本8.0.0(2016-04-25)

@Bind becomes @BindView and @BindViews (one view and multiple views, respectively).

10-01 00:51