1

After trying so many codes, I failed to find perfect answer. Here I come to ask you guys how to change height of action bar in specific layout. I'm using Appcompat theme and my coding is,

Styles.xml

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <item name="colorPrimary">#FF4081</item>
        <!-- Customize your theme here. -->
    </style>

</resources>
Saeed Rehman
  • 165
  • 3
  • 14

1 Answers1

1

Create the new theme and use this: How to change action bar size

Or use the Android Developers site: http://developer.android.com/reference/android/app/ActionBar.LayoutParams.html

Community
  • 1
  • 1
Samuel Tulach
  • 1,319
  • 13
  • 38