我想更改默認ActionBar選項卡的高度,但找不到任何有關的信息。是否有一些樣式屬性或方法來設置標籤的高度? 謝謝。ActionBar選項卡高度
回答
這是您如何設置選項卡的樣式。雖然,我實際上難以改變的高度。我不確定你可以通過Style設置高度到TabView。您可能必須創建自定義視圖並將其應用於代碼中的選項卡。您需要引用的所有樣式和屬性都在SDK中。查看您正在使用的平臺版本的「值」文件夾。這就是我通常瞭解如何做到這一點的方式。
<style name="Widget.Holo.Tab" parent="@android:style/Widget.Holo.Light.ActionBar.TabView">
<item name="android:height">#dp</item>
</style>
<style name="Your.Theme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarTabStyle">@style/Widget.Holo.Tab</item>
</style>
我認爲身高不能受到影響.... 即使我沒有得到解決方案,我試過的東西沒有工作.. 猜測這是默認 – 2012-02-15 03:24:51
此解決方案中的代碼不起作用。 – 2015-07-27 15:15:07
您必須更改操作欄的高度才能更改選項卡的高度。
theme.xml
<style name="YourTheme" parent="@android:style/Theme.Holo">
<item name="android:actionBarTabStyle">@style/tab_nav</item>
<item name="android:actionBarTabTextStyle">@style/tab_nav_text</item>
<item name="android:actionBarSize">80dp</item>
..
</style>
這工作對我來說... – 2012-10-01 06:47:55
+對我來說也... :) – 2012-11-09 09:49:01
從哪裏是tab_nav和tab_nav_text? – 2013-02-23 14:46:10
注意使用
android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen"
代替
android:theme="@android:style/Theme.Holo.Light.NoActionBar"
導致以下問題:如果從[NoActionBar活動]切換到[ ActionBar活動] ActionBar將JUMP
- 1. 是否有可能使ActionBar選項卡高度高於ActionBar高度?如果是這樣,怎麼樣?
- 2. ActionBar選項卡的重量/寬度
- 3. ActionBar選項卡「鎖定」下面的ActionBar
- 4. Android Actionbar選項卡導航
- 5. 選項卡 - tabView或ActionBar
- 6. ActionBar Sherlock選項卡太短//如何設置選項卡的寬度
- 7. 如何在ActionBar的導航選項卡中設置自定義視圖並使選項卡適應其高度?
- 8. 選擇ActionBar選項卡時打開新行選項卡
- 9. Xamarin Android ActionBar選項卡 - 1選項卡不顯示文本
- 10. 在Android ActionBar選項卡的選項卡中添加FragmentActivity。
- 11. 選項卡下的Vue元素高度
- 12. jQuery選項卡:自動高度
- 13. css選項卡欄高度問題
- 14. XUL tabbox選項卡標籤高度
- 15. 更改操作欄選項卡高度
- 16. 相同高度的Jquery UI選項卡
- 17. 帶圖片的jQuery選項卡高度
- 18. 更改高度導航選項卡ActionbarSherlock
- 19. Android ActionBar選項卡和片段
- 20. ActionBar選項卡 - 無頁面更改
- 21. ActionBar選項卡內容重疊
- 22. 將ActionBar選項卡綁定到ViewPager
- 23. 在actionbar選項卡中添加badgeview
- 24. 帶有FragmentActivity的ActionBar選項卡
- 25. ActionBar中的導航選項卡
- 26. 片段中的ActionBar選項卡
- 27. 片段替換ViewPager在ActionBar選項卡
- 28. ActionBar選項卡背景與xml
- 29. 在ActionBarActivity底部設置ActionBar選項卡
- 30. ActionBar選項卡不包含wrap_content
參考這篇文章[閱讀此篇] [1] [1]:http://stackoverflow.com/questions/13827762/actionbar-with-navigation-tabs-changes-height-with-screen-方向 – 2013-07-09 08:51:06