How To Chage Font Progrmatically

[Solved] How To Chage Font Progrmatically | Swift - Code Explorer | yomemimo.com
Question : How to chage font progrmatically

Answered by : red-legged-pademelon-d1qnjo26224s

TextView tv = (TextView) findViewById(R.id.appname);
Typeface face = Typeface.createFromAsset(getAssets(), "fonts/epimodem.ttf");
tv.setTypeface(face);

Source : https://stackoverflow.com/questions/12128331/how-to-change-fontfamily-of-textview-in-android | Last Update : Sun, 05 Apr 20

Answers related to how to chage font progrmatically

Code Explorer Popular Question For Swift