@Retention(value=RUNTIME)
@Target(value=FIELD)
public @interface BindViews
@BindViews({ R.id.title, R.id.subtitle })
List<TextView> titles;
| Modifier and Type | Required Element and Description |
|---|---|
int[] |
value
View IDs to which the field will be bound.
|