Tab widget have always in capital alphabets in android 4.0

user1153176 picture user1153176 · Mar 31, 2012 · Viewed 7k times · Source

enter image description hereIn Android 4.0 i put tab bar with two widget. in code i write in small alphabates(new) but in application it should always display (NEW) How to write small alphabates on tab in android 4.0

Answer

YuseonHan picture YuseonHan · Jul 5, 2012

Theres no need to create custom theme

In source code..

   TextView tv =  (TextView) mTabHost.getTabWidget().getChildAt(index).findViewById(android.R.id.title); 
   tv.setAllCaps(false);