Here is my scenario,
I need to load a font from sdCard and display its italic / bold versions in the textview.
I am using Typeface.createFromFile("<sdcard_path_to_ttf_fie">); to load the font.
And then,
<TextView>.setTypeface(tf,Typeface.BOLD);
Android documentation says:
public void setTypeface (Typeface tf, int style) Since: API Level 1
Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.
I want to display the actual bold and italics versions of fonts in file.
Also, Setting text appearences on textview reverts the typeface selection to default font.