Skip to content

Instantly share code, notes, and snippets.

@talhahasanzia
Last active September 14, 2017 13:43
Show Gist options
  • Save talhahasanzia/5dee0bc5999f761b4807e8d13b2ceac4 to your computer and use it in GitHub Desktop.
Save talhahasanzia/5dee0bc5999f761b4807e8d13b2ceac4 to your computer and use it in GitHub Desktop.
Custom Fonts in Android
/**
* Uses the file name of font usually .ttf format from project and creates a typeface
* object that can be used to set text typeface where it is supported.
**/
public class TypeFaceHelper
{
private Typeface typeFace;
public TypeFaceHelper(String fileNameWithExtension)
{
typeFace = Typeface.createFromAsset(getAssets(), fileNameWithExtension);
}
public Typeface getCustomTypeFace()
{
return typeFace;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment