设置字体

来源:互联网 发布:模拟核弹爆炸软件 编辑:程序博客网 时间:2024/05/01 14:24


如设置少女字体,自定义字体的话,android Typeface使用TTF字体文件设置字体

你可以在程序中放入ttf字体文件,在程序中使用Typeface设置字体。

第一步,在assets目录下新建fonts目录,把ttf字体文件放到这。

第二步,程序中调用:

AssetManager mgr=getAssets();//得到AssetManager

Typeface tf=Typeface.createFromAsset(mgr, "fonts/ttf.ttf");//根据路径得到Typeface

tv.setTypeface(tf);//设置字体

0 0
原创粉丝点击