如何在Android中更改Action栏的高度?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Android中更改Action栏的高度?相关的知识,希望对你有一定的参考价值。

我正在使用min API 14我想降低动作栏的高度

我使用的代码

<style name="MyTheme" parent="@android:style/Theme.Holo.Light">
    <item name="android:actionBarStyle">@style/MyActionBar</item>
</style>

<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
    <item name="android:background">#fe9900</item>
    <item name="android:actionBarSize">20dp</item>         
</style>

但android:actionBarSize不能与API 14一起使用

<item name="android:height">30dp</item>

但不工作请帮我解决这个问题

答案

它会帮助你

<style name="thin_ab_style" parent="android:Widget.Holo.ActionBar">  
   <item name="android:height">30dp</item>
</style>

以上是关于如何在Android中更改Action栏的高度?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用swift3增加导航栏的高度并更改xcode 8中状态栏的颜色?

如何在 iOS 12.2 中更改导航栏高度?

swift 4中无法更改导航栏的高度

如何以编程方式获取 Android 导航栏的高度和宽度?

如何获取Android手机底部导航栏的高度

如何根据前景图像在android中动态更改状态栏的颜色?