Saeed Rehman
Saeed Rehman

Reputation: 173

How To Reduce Height of Action Bar in Android Layout

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>

Upvotes: 1

Views: 2330

Answers (1)

user5364144
user5364144

Reputation:

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

Upvotes: 1

Related Questions