I'm trying to change the height of my ActionBar, but it won't work. I have tried to set the height using the android:actionBarSize and android:height attributes. But nothing workds. Here is my theme.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyActionBarTheme"
parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/MyActionBar</item>
<item name="actionBarStyle">@style/MyActionBar</item>
<item name="android:itemBackground">@color/green_2x</item>
</style>
<style name="MyActionBar"
parent="Widget.AppCompat.Light.ActionBar">
<item name="android:background">@drawable/actionbar_background</item>
<item name="background">@drawable/actionbar_background</item>
<item name="android:height">10dp</item>
</style>
</resources>
Any ideas to change the height of the ActionBar?