标签小部件在 android 4.0 中始终使用大写字母
在 Android 4.0 中,我放置了带有两个小部件的标签栏.在代码中我用小字母(新)编写,但在应用程序中它应该始终显示(新)如何在 android 4.0 的选项卡上写小字母
In 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
推荐答案
Android 4.0 中选项卡视图的默认主题(Holo 主题)将 android:textAllCaps
设置为 true.您可以创建自己的主题,然后将其应用于清单中的操作栏以覆盖此行为.有关设置 ActionBar 样式和创建自己的样式的更多信息,请参阅:
The default theme for tab views in Android 4.0 (the Holo theme) has android:textAllCaps
set to true. You can create your own theme and then apply it to the action bar in your manifest to override this behavior. For more information on styling the ActionBar and creating your own styles, see:
http://developer.android.com/guide/topics/ui/主题.html和http://android-developers.blogspot.com/2011/04/customizing-action-bar.html
相关文章