Can I programmatically change the font of the ActionBarSherlock Tab headers to a custom font? I was looking for a method for a method, but only found where the default font is used.
I guess it will look like I have http://thehax.org/code-cuts/setting-a-custom-font-throughout-your-entire-app/ here
I extend textview and set the font there, but you should be able to get the textview object and make it there.
String otfName = "FrutigerLTStd-Cn.otf"; Typeface font = Typeface.createFromAsset(c.getAssets(), otfName); this.setTypeface(font);