How to change the font size of tabhost in android

后端 未结 4 1092
盖世英雄少女心
盖世英雄少女心 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:04

    i use this piece of code in my Code but it effect only on first Tab the other 3 Tabs are still unchanged.

        TabWidget tw = (TabWidget)tabHost.findViewById(android.R.id.tabs);
        View tabView = tw.getChildTabViewAt(0);
        TextView tv = (TextView)tabView.findViewById(android.R.id.title);
        tv.setTextSize(10);
    

提交回复
热议问题