Created
July 15, 2014 03:02
-
-
Save subinkrishna/915a01f2c76d740d4987 to your computer and use it in GitHub Desktop.
Customize Android ActionBar overflow icon.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<resources> | |
<!-- Base application theme. --> | |
<style name="AppTheme" parent="android:Theme.Holo.Light"> | |
<item name="android:actionBarStyle">@style/ActionBar</item> | |
<item name="android:actionOverflowButtonStyle">@style/ActionBarOverflowButton</item> | |
</style> | |
<!-- ActionBar theme --> | |
<style name="ActionBar" parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse"> | |
<item name="android:background">@android:color/holo_blue_dark</item> | |
</style> | |
<!-- ActionBar Overflow Button --> | |
<style name="ActionBarOverflowButton" parent="@android:style/Widget.Holo.ActionButton.Overflow"> | |
<item name="android:src">@drawable/ic_action_overflow</item> | |
</style> | |
</resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment