先上图片;
部分关键代码:
public TextView makeText(String type,int size) {
Typeface face = Typeface.createFromAsset(getAssets(), type);
TextView tv = new TextView(this);
tv.setText(R.string.helloChina);
tv.setTypeface(face);
tv.setTextSize(size);
return tv;
}showLay.addView(makeText("fonts/MetaSerifOT-Book.ttf",12));
showLay.addView(makeText("fonts/MetaSerifOT-Book.ttf",18));
showLay.addView(makeText("fonts/MetaSerifOT-Book.ttf",24));
showLay.addView(makeText("fonts/MetaSerifOT-Book.ttf",36));
android 自定义字体 字体库 字体格式 使用攻略,布布扣,bubuko.com
原文:http://blog.csdn.net/jiaruihua_blog/article/details/23269943