準(zhǔn)備字體資源
1.下載常用字體*.ttf,只能使用小寫英文字母
2.切換到Project視圖,在app/src/main/新建目錄assets/fonts
3.將字體文件simsun.ttf復(fù)制到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) {
//? ? 調(diào)用更換字體的方法
? ? setFonts(textView,"yegenyou.ttf");
}