I am using Butterknife to bind a views.When Binding group multiple views
like Acting on Multiple Views In a List , @BindViews
can't available. See below image:
I am trying below code:
@BindViews({ R.id.edtOne, R.id.edtTwo, R.id.edtThree })
List<EditText> editTextsList;
How can I resolved it?