美文网首页Android效果/自定义
记:Android 字体库使用

记:Android 字体库使用

作者: 爱吃板栗的小女孩 | 来源:发表于2017-09-22 14:39 被阅读79次

    推荐免费字体(但是若实际项目中使用,应该需要授权)

    www.1001freefonts.com/

    1.首先下载字体文件,一般多为.ttf或.otf

    2.导入到项目中,具体路径如下图:

    具体位置

    3.具体使用方法:

    TextView tvName= (TextView) findViewById(R.id.tvName); Typeface typeface=Typeface.createFromAsset(getAssets(),"fonts/orange.ttf"); tvName.setTypeface(typeface);

    相关文章

      网友评论

      本文标题:记:Android 字体库使用

      本文链接:https://www.haomeiwen.com/subject/cllfextx.html