All Downloads are FREE. Search and download functionalities are using the official Maven repository.

butterknife.BindFont Maven / Gradle / Ivy

There is a newer version: 10.2.3
Show newest version
package butterknife;

import android.graphics.Typeface;
import android.support.annotation.IntDef;
import android.support.annotation.RestrictTo;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static android.support.annotation.RestrictTo.Scope.LIBRARY;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.CLASS;

/**
 * Bind a field to the specified font resource ID.
 * 

 * {@literal @}BindFont(R.font.comic_sans) Typeface comicSans;
 * 
*/ @Retention(CLASS) @Target(FIELD) public @interface BindFont { /** Font resource ID to which the field will be bound. */ /* TODO support lib 26.0.0: @FontRes */ int value(); @TypefaceStyle int style() default Typeface.NORMAL; @IntDef({ Typeface.NORMAL, Typeface.BOLD, Typeface.ITALIC, Typeface.BOLD_ITALIC }) @RestrictTo(LIBRARY) @interface TypefaceStyle { } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy