Tab widget have always in capital alphabets in android 4.0

后端 未结 2 1160
执念已碎
执念已碎 2020-12-16 18:27

\"enterIn Android 4.0 i put tab bar with two widget. in code i write in small alphabates(n

2条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-16 18:56

    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);  
    

提交回复
热议问题