素材网站:  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);

相关文章:

  • 2021-11-19
  • 2021-12-05
  • 2021-11-18
  • 2021-11-30
  • 2021-09-11
  • 2022-02-07
  • 2021-12-04
猜你喜欢
  • 2021-12-24
  • 2021-07-16
  • 2021-08-31
  • 2022-12-23
  • 2021-11-20
  • 2022-12-23
相关资源
相似解决方案