Android给文字添加字体效果有3种方法:
直接在xml布局里面添加
先将字体文件复制到该位置
然后在xml中引用该文件
在activity里面设置(1)
先将字体文件复制到该位置
然后在activity里面设置该字体
Typeface tfRegular = ResourcesCompat.getFont(mContext, R.font.simsun);//初始化字体tv_title_first.setTypeface(tfRegular);
3.在activity里面设置(2)
先将字体文件复制到该位置
然后在activity里面设置该字体
Typeface tfRegular = Typeface.createFromAsset(mContext.getAssets(), "font/simsun.ttf");//初始化字体tv_title_first.setTypeface(tfRegular);
来源地址:https://blog.csdn.net/weixin_48488560/article/details/131772254