设置TextView字体

1、在assets目录下新建一个文件夹fonts,用于保存目标字体文件,如 digifaw.ttf。

2、添加如下代码

      Typeface fontFace = Typeface.createFromAsset(getAssets(), "fonts/digifaw.ttf");
      TxView.setTypeface(fontFace);//TxView为TextView控件

你可能感兴趣的:(fonts)