素材网站:  http://font.chinaz.com/zhongwenziti.html

将下载的ttf字体素材放入assets资源文件夹中。

android 更改字体

使用方法

//this是上下文
Typeface typeface = Typeface.createFromAsset(this.getAssets(), "fonts/aun.ttf");
TextView txt = findViewById(R.id.tet);
txt.setTypeface(typeface);

相关文章: