Skip to content

Instantly share code, notes, and snippets.

@rahulg
Created July 12, 2013 15:53
Show Gist options
  • Save rahulg/5985496 to your computer and use it in GitHub Desktop.
Save rahulg/5985496 to your computer and use it in GitHub Desktop.
Setting a custom typeface on Android.
TextView tv = (TextView) findViewById(R.id.someTextView);
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/fontname.otf");
tv.setTypeface(tf);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment