当“ifroom”时,如何将标签文字的颜色从白色更改为黑色?
我的意思是,当活动处于模式肖像时,标签文本为黑色,但当处于模式格局且ifroom为真时,文本应为黑色。
我有一个自定义主题:
<style name="Theme.mytheme" parent="@android:style/Theme.Holo.Light.DarkActionBar">
<item name="android:actionBarTabTextStyle">@style/ActionBarTabTextStyle.mytheme</item>
</style>
<style name="ActionBarTabTextStyle.mytheme" parent="@android:style/Widget.Holo.ActionBar.TabText">
<item name="android:textColor">@android:color/black</item>
<!-- This color should be white when tabs are on mode ifroom -->
</style>