如何在ICS +中使用Roboto浓缩(或瘦)字体?

时间:2012-09-20 15:13:57

标签: android fonts

我找不到设置Roboto浓缩(瘦)而不是默认值的方法。有可能吗?

1 个答案:

答案 0 :(得分:18)

  1. 下载完整的Roboto家庭

  2. Roboto-Condensed.ttf复制到项目的assets文件夹

  3. 在代码中,使用Typeface

  4. 获取对Typeface robotoCond = Typeface.createFromAsset(context.getAssets(), "Roboto-Condensed.ttf")的引用
  5. 在任何小部件中使用此功能,例如textView.setTypeface(robotoCond);

  6. ???

  7. PROFIT!