更改选项卡标题的字体 - ActionBarSherlock

时间:2012-11-24 20:08:17

标签: android actionbarsherlock typeface

是否可以通过编程方式将ActionBarSherlock Tab标题的字体更改为自定义字体? 我已经四处搜索了一个方法,但只是遇到了默认使用的字体。

1 个答案:

答案 0 :(得分:2)

我想它会与我在这里http://thehax.org/code-cuts/setting-a-custom-font-throughout-your-entire-app/

相似

我扩展textview并在那里设置字体,但你应该能够获得textview对象并在那里进行。

String otfName = “FrutigerLTStd-Cn.otf”;
               Typeface font = Typeface.createFromAsset(c.getAssets(), otfName);
               this.setTypeface(font);