记:Android 字体库使用

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

www.1001freefonts.com/

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

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

记:Android 字体库使用_第1张图片
具体位置

3.具体使用方法:

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

你可能感兴趣的:(记:Android 字体库使用)