【发布时间】:2014-05-09 04:37:19
【问题描述】:
我想知道在哪里可以下载适用于 Android 应用的 Helvetica Neue Ultralight.ttf。
我也想知道如何在项目中实现?
【问题讨论】:
标签: android text fonts textview
我想知道在哪里可以下载适用于 Android 应用的 Helvetica Neue Ultralight.ttf。
我也想知道如何在项目中实现?
【问题讨论】:
标签: android text fonts textview
简单的 Google 搜索会为该字体生成 download,而快速的 SO 搜索会生成您的 answer to add it to your app。
问候, 内特
【讨论】:
像这样在类中使用:
TextView tv=(TextView)findViewById(R.id.custom);
Typeface face=Typeface.createFromAsset(getAssets(),
"fonts/Verdana.ttf");
tv.setTypeface(face);
将字体文件放在/res/的fonts文件夹中
如果对我的回答有帮助,请点赞...
【讨论】: