@Retention(value=RUNTIME)
@Target(value=FIELD)
public @interface BindArray
@BindArray(R.array.countries) String[] countries;
Int array:
@BindArray(R.array.phones) int[] phones;
Text array:
@BindArray(R.array.options) CharSequence[] options;
TypedArray:
@BindArray(R.array.icons) TypedArray icons;
| Modifier and Type | Required Element and Description |
|---|---|
int |
value
Array resource ID to which the field will be bound.
|