把字体文件放到Asset/font目录下
Typeface typeFace=Typeface.createFromAsset(mContext.getAssets(),‘font/ziti.ttf‘);
TextView.setTypeface(typeFace);
@font-face{font-family:MyFont;src:url(‘file:///android_asset/font/ziti.ttf‘)}
body{font-family:MyFont;}
原文:http://www.cnblogs.com/invincible-hehe/p/3869576.html