Android学习笔记—更换字体

准备字体资源

1.下载常用字体*.ttf,只能使用小写英文字母

2.切换到Project视图,在app/src/main/新建目录assets/fonts

3.将字体文件simsun.ttf复制到assets/fonts目录

Android学习笔记—更换字体_第1张图片
更换字体之前

//    封装更换字体的方法

public void setFonts(TextView textView, String font) {

    Typeface typeface = Typeface.createFromAsset(getAssets(),"fonts/"+ font);

    textView.setTypeface(typeface);

}

Android学习笔记—更换字体_第2张图片
更换字体后

@Override

public void onClick(View v) {

//    调用更换字体的方法

    setFonts(textView,"yegenyou.ttf");

}

Android学习笔记—更换字体_第3张图片
微信公众号:fdtx2015

你可能感兴趣的:(Android学习笔记—更换字体)