How to chage font progrmatically

47

How to chage font progrmatically -

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

Comments

Submit
0 Comments