How to change the font in a TextView
, as default it\'s shown up as Arial? How to change it to Helvetica
?
When your font is stored inside res/asset/fonts/Helvetica.ttf
use the following:
Typeface tf = Typeface.createFromAsset(getAssets(),"fonts/Helvetica.ttf");
txt.setTypeface(tf);
Or, if your font file is stores inside res/font/helvetica.ttf
use the following:
Typeface tf = ResourcesCompat.getFont(this,R.font.helvetica);
txt.setTypeface(tf);