Custom font for ActionBarSherlock tabs

后端 未结 6 2036
滥情空心
滥情空心 2020-12-16 02:13

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

6条回答
  •  北荒
    北荒 (楼主)
    2020-12-16 02:37

    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);
    

提交回复
热议问题