2
我正在玩Action Bar Sherlock提供的「Styled」樣本。在Action Bar/Tabs中設置文本格式
我在原來的三個選項卡上添加了幾個選項卡並更改了它們的名稱。但現在看起來很糟糕,因爲標題標題太大而無法顯示,所以一切都在狹窄的空間中滾動。可以減小文字大小嗎?
我正在玩Action Bar Sherlock提供的「Styled」樣本。在Action Bar/Tabs中設置文本格式
我在原來的三個選項卡上添加了幾個選項卡並更改了它們的名稱。但現在看起來很糟糕,因爲標題標題太大而無法顯示,所以一切都在狹窄的空間中滾動。可以減小文字大小嗎?
你只需要覆蓋默認選項卡的文本樣式:
<style
name="MyActionBarTabTextStyle"
parent="Widget.Sherlock.ActionBar.TabText">
<item name="android:textSize">12sp</item>
</style>
要記住,在你的主題兩次引用它:
<item name="actionBarTabTextStyle">@style/MyActionBarTabTextStyle</item>
<item name="android:actionBarTabTextStyle">@style/MyActionBarTabTextStyle</item>