Package icyllis.modernui.annotation
Annotation Interface ColorInt
@Documented
@Target({PARAMETER,METHOD,LOCAL_VARIABLE,FIELD})
@Retention(CLASS)
public @interface ColorInt
Denotes that the annotated element represents a packed color
int,
0xAARRGGBB
. If applied to an int array, every element
in the array represents a color integer.
Example:
public abstract void setTextColor(@ColorInt int color);