1、首先来说下两种创建方式

(1)这种要放在assets文件夹下

Typeface typeface = Typeface.createFromAsset(getContext().getAssets(),"fonts/font.ttf");

(2)   而这种是指定路径的

Typeface typeface = Typeface.createFromFile("/mnt/sdcard/font.ttf");

2、使用方法

(1)textview字体设置

TextView tv = (TextView)findViewById(R.id.TextView01);

tv.setTypeface(typeface);

(2)Canvas上写字字体设置

Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);

paint.setTypeface(typeface);

anvas.drawText(str , rect.left , rect.top+height , paint);

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐