【发布时间】:2013-05-19 11:25:24
【问题描述】:
【问题讨论】:
-
google.it/… 第一个结果。
标签: java android textview customization
【问题讨论】:
标签: java android textview customization
首先,将字体复制到你项目中的/assets文件夹中,然后设置TextView的Typeface,你可以这样做:
Typeface myFont = Typeface.createFromAsset(getAssets(), "dafont.ttf");
myTextView.setTypeface(myFont);
编辑:更正目录
【讨论】: