I want to set font for the \"Video\" and \"Image\" tabs in ActionBarSherlock. I have used the following code to do so. Its showing accurately in ICS but not in
ActionBarSherlock
Try this:
String s = "VIDEO"; SpannableString mSS = new SpannableString(s); mSS.setSpan(new StyleSpan(Typeface.BOLD), 0, s.length(), 0); mTabsAdapter.addTab(bar.newTab().setText(mSS), BFragment.class, null);