TextView设置ttf格式字体

开发中有时会涉及到给TextView设置字体,TextView在xml中有自带设置字体样式的属性:

android:typeface="monospace"

自带有四种文字类型,分别是:

  • monospace
  • normal
  • sans
  • serif

然而这四种字体有时无法满足我们的审美要求,于是我们可以给TextView设置 ttf 格式的字体

首先,将字体文件(如我的文件是run.ttf)复制到自己项目的assets文件夹下,如下图:
TextView设置ttf格式字体_第1张图片
1.png

然后在代码中引用文件:

Typeface mtypeface=Typeface.createFromAsset(mContext.getAssets(),"run.ttf");
textView.setTypeface(mtypeface);

ok,今天有关字体设置的就讲到这里,谢谢诶。

你可能感兴趣的:(TextView设置ttf格式字体)