Hi,
I'm creating Tabs for my application and I wonder how do I change the
font size in the Tab Host (Tab Menu) in the following code, that is
the font size of Menu1, Menu2, Menu3, Menu4:
TabHost host=getTabHost();
host.addTab(host.newTabSpec("one")
.setIndicator("Menu1", getResources
().getDrawable(R.drawable.markets))
.setContent(new Intent(this, Tab1.class)));
host.addTab(host.newTabSpec("two")
.setIndicator("Menu2", getResources
().getDrawable(R.drawable.movers))
.setContent(new Intent(this, Tab2.class)));
host.addTab(host.newTabSpec("3")
.setIndicator("Menu3", getResources().getDrawable
(R.drawable.movers))
.setContent(new Intent(this, Tab2.class)));
host.addTab(host.newTabSpec("4")
.setIndicator("Menu4", getResources().getDrawable
(R.drawable.movers))
.setContent(new Intent(this, Tab2.class)));
thanks is advance
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---