Skip to content

Instantly share code, notes, and snippets.

@rdelrosario
Created November 30, 2017 22:19
Show Gist options
  • Save rdelrosario/b1bdab144207c2751219bad758653a61 to your computer and use it in GitHub Desktop.
Save rdelrosario/b1bdab144207c2751219bad758653a61 to your computer and use it in GitHub Desktop.
Android - Text Font
void UpdateToolbarTextFont(Android.Widget.TextView textView, Font customFont, Typeface originalFont)
{
if (customFont != null)
{
textView.Typeface =customFont.ToTypeface();
float tValue = customFont.ToScaledPixel();
textView.SetTextSize(ComplexUnitType.Sp, tValue);
}
else
{
textView.Typeface = originalFont;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment