I would like to know how to change the color of the overflow button, if it is not possible, to change the image to SDK minimum 10
I would like to know how to change the color of the overflow button, if it is not possible, to change the image to SDK minimum 10
According to this answer in SOen, you can change the color of Overflow Button
like this:
<style name="MyCustomTheme" parent="style/Theme.Holo">
<item name="android:actionOverflowButtonStyle">@style/MyCustomTheme.OverFlow</item>
</style>
<style name="MyCustomTheme.OverFlow">
<item name="android:src">@drawable/my_overflow_image</item>
</style>
Or, if you are using ActionBarSherlock
:
<style name="MyCustomTheme" parent="style/Theme.Sherlock">
<item name="android:actionOverflowButtonStyle">@style/MyCustomTheme.OverFlow</item>
<item name="actionOverflowButtonStyle">@style/MyCustomTheme.OverFlow</item>
</style>
<style name="MyCustomTheme.OverFlow">
<item name="android:src">@drawable/my_overflow_image</item>
</style>
Still in the same question are other answers that may also be helpful.