Reputation: 10437
I've one Activity with multiple fragments. Most links from Navigation bar replace the fragments through transactions. The material guidelines allow you to adjust height to make space for more buttons, text. How do I do adjust height of support ActionBar (not Toolbar) from fragment?
Upvotes: 5
Views: 872
Reputation: 859
Change style.xml to
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:actionBarSize">70dp</item>
</style>
Upvotes: -2