目前我正忙於爲我公司的WHMCS應用程序。作爲導航,我想在操作欄中使用Tab功能。Android Actionbar設置標籤的寬度
但是,你怎麼能編輯選項卡的寬度是多少?我需要在一個屏幕上一起使用5,而不需要滾動。我已經有一些像這樣的風格嘗試過:
<style name="AppBaseTheme" parent="android:Theme.Light">
</style>
<style name="AppTheme" parent="AppBaseTheme">
<item name="@android:attr/actionBarTabStyle">@style/tab_nav</item>
<item name="android:actionBarTabTextStyle">@style/actionBarTabTextStyle</item>
</style>
<style name="actionBarTabTextStyle" parent="android:Widget.Holo.Light.ActionBar.TabText.Inverse">
<item name="android:padding">1dp</item>
</style>
<style name="tab_nav" parent="android:style/Widget.Holo.Light.Tab">
<item name="android:paddingLeft">-25dp</item>
</style>
<style name="CustomTabTextStyle" parent="@android:style/TextAppearance.Holo">
<item name="android:textColor">#2456c2</item>
</style>
然而,寬度不會蝦使用更高負值時。
嗨,大家好,你解決了你的問題嗎?請發佈解決方案,因爲我有同樣的問題。謝謝 –