准备字体资源
1.下载常用字体*.ttf,只能使用小写英文字母
2.切换到Project视图,在app/src/main/新建目录assets/fonts
3.将字体文件simsun.ttf复制到assets/fonts目录
//? ? 封装更换字体的方法
public void setFonts(TextView textView, String font) {
? ? Typeface typeface = Typeface.createFromAsset(getAssets(),"fonts/"+ font);
? ? textView.setTypeface(typeface);
}
@Override
public void onClick(View v) {
//? ? 调用更换字体的方法
? ? setFonts(textView,"yegenyou.ttf");
}