Skip to content

Instantly share code, notes, and snippets.

@Frederikos
Created March 27, 2019 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Frederikos/7f699e9beb63d6c3146bf016e8cc12bf to your computer and use it in GitHub Desktop.
Save Frederikos/7f699e9beb63d6c3146bf016e8cc12bf to your computer and use it in GitHub Desktop.
@BindingAdapter({"bind:font"})
public static void setFont(TextView textView, String fontName) {
Typeface typeface = Typeface.createFromAsset(context.getAssets(), "fonts/" + fontName);
textView.setTypeface(typeface);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment