2

On Honeycomb, when the options are hidden (not ifRoom), they are displayed in a Spinner in an option menu. I simply would like to know how to change the icon of this option menu (furthest to the right). By default, the icon is just three lines and 3 dots on ICS.

Thanks !

g123k
  • 3,748
  • 6
  • 42
  • 45

2 Answers2

12

See more attributes from your android sdk installation, in platforms/android-XX/data/res/values/style.xml

Here is menu overflow action button style definition:

<style name="Widget.Holo.ActionButton.Overflow">
    <item name="android:src">@android:drawable/ic_menu_moreoverflow_holo_dark</item>
    <item name="android:background">?android:attr/actionBarItemBackground</item>
    <item name="android:contentDescription">@string/action_menu_overflow_description</item>
</style>
Dmitri Livotov
  • 396
  • 3
  • 5
1

Here is the officialy documentation telling you how to customize the action bar to the up most.

Customizaing the action bar

coder_For_Life22
  • 26,645
  • 20
  • 86
  • 118