Thursday, February 21, 2019

Custom font textView Android

We want to set text custom text font like this
Copy custom font to folder assets.


Add this line to set font custom for textView
tv.setTypeface(Typeface.createFromAsset(this.getAssets(), "Benxuan.TTF"));
If your font has tail TTF in capital letters, you must set it capital letters in code, otherwise app will crash.

Other simple way to get custom font is do it in Word, take screenshot by press PrtSc SysRq, paste it to Paint and save as image, copy in to app.

No comments:

Post a Comment