KMManager.getFontTypeface()
Summary
The getFontTypeface() method creates a new typeface from the
specified font filename.
Syntax
KMManager.getFontTypeface(Context context, String fontFilename)
Parameters
context- The context.
fontFilename- The filename and full path of the font.
Returns
Returns the new typeface created from font file with specified filename
if it exists, null otherwise.
Description
Use this method to create a new typeface from the font file with specified filename if it exists.
Examples
Example: Using getFontTypeface()
The following script illustrate the use of getFontTypeface():
KMTextView textView = (KMTextView) findViewById(R.id.kmTextView);
String textFontFilename = KMManager.getKeyboardTextFontFilename();
Typeface fontTypeface = KMManager.getFontTypeface(this, textFontFilename);
textView.setTypeface(fontTypeface);


