I am trying to change the height of tabs under the action bar in Android. I searched a lot for this and tried many solutions, such as installing Themes in the application in the manifest and much more. Below is one of those topics that I have applied but have not been successful.
<style name="CustomActionBarTheme" parent="@android:style/Theme.Holo">
<item name="android:actionBarTabStyle">@style/ActionBarTabStyle</item>
<item name="android:scrollHorizontally">false</item>
<item name="android:paddingLeft">0dp</item>
<item name="android:paddingRight">0dp</item>
<item name="android:actionBarSize">80dp</item>
<item name="actionBarSize">80dp</item>
</style>
and I also tried this:
<style name="Widget.Holo.Tab" parent="@android:style/Widget.Holo.Light.ActionBar.TabView">
<item name="android:height">200dp</item>
</style>
<style name="MyTabTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarTabStyle">@style/Widget.Holo.Tab</item>
</style>
I want to add an icon and text below. Please help me solve this.
Thanks in advance.
source
share