How to change the font size of tabhost in android

后端 未结 4 1100
盖世英雄少女心
盖世英雄少女心 2020-11-27 15:23

How can the font size of the tabs be changed? I extend TabActivity for the tabs.

4条回答
  •  忘掉有多难
    2020-11-27 16:01

    Slightly generalized:

    final TabWidget tw = (TabWidget)mTabHost.findViewById(android.R.id.tabs);
        for (int i = 0; i < tw.getChildCount(); ++i)
        {
            final View tabView = tw.getChildTabViewAt(i);
            final TextView tv = (TextView)tabView.findViewById(android.R.id.title);
            tv.setTextSize(20);
        }
    

提交回复
热议问题