Change Text Size On Tabhost
I'm trying to do a tabHost with 2 tabs, its ok, but i want to change text size, I search a lot but I don't find anything without change all layout of tab, i just want change text s
Solution 1:
Yes, You can do that by getting the child at a specified position and getting its textview and setting the textsize of it.
TextView x = (TextView) tabHost.getTabWidget().getChildAt(0).findViewById(android.R.id.title);
x.setTextSize(25);
Post a Comment for "Change Text Size On Tabhost"