通过TypeFace设置字体样式

时间:2021-10-06 23:39:59

android开发中通常需要根据客户的需要设置字体的样式,如微软雅黑,仿宋,楷体等;
首先你需要一个TTF文件,从网上下载即可。
然后在项目中新建assets文件夹,再在assets下面新建fonts文件夹,将下载的TTF文件放到建好的fonts文件下即可
通过代码引用

Typeface typeFace;
        typeFace = Typeface.createFromAsset(mContext.getAssets(), "fonts/GBS.TTF");
        tv.setTypeface(typeFace);

《Android版本更新、热更新》系列课程视频

版本更新6.0,7.0统统搞定!!

热修复不在麻烦,再也不用担心上线后出bug!!

http://edu.csdn.net/course/detail/6523

http://edu.csdn.net/course/play/6523/131198

《Kotlin语法基础到实战开发》系列课程视频

http://edu.csdn.net/course/detail/6409?locationNum=7&fps=1&ref=srch&loc=1

http://edu.csdn.net/course/play/6409/123752