1

Is there a way to make to change the color of the 3 dots of the menu icon? I'd like to make them completely white without any transparency but haven't found anything in the android styles/themes?

FYI: I'm using actionbarsherlock.

Thanks in advance :)

Arman
  • 875
  • 2
  • 8
  • 30

1 Answers1

3

this is because they aren't made in the code just search the image com_actionbarsherlock/res/drawable-hdpi/abs__list_divider_holo_light.9.png in your drawable directory there you can change the color of this image.

mariomario
  • 660
  • 1
  • 9
  • 29
  • Hmm, do I have a chance to "overload" this image by putting a same file with the same name into my own "drawable-hdpi" directory? But I assume this wouldn't work either due to different packages... – Arman May 25 '12 at 10:02
  • um that will not work because abs is looking up the image in his own directories – mariomario May 25 '12 at 10:04
  • Ok, just as I thought. Changed the "abs__ic_menu_moreoverflow_normal_holo_dark.png" asset did the trick. But now ActionBarSherlocks intelligent behaviour comes in my way: Android 2.x uses my manipulated menu icons, but Android 4.x uses its native ones... Any chance to do something against that? – Arman May 25 '12 at 10:20
  • http://stackoverflow.com/questions/9733312/changing-overflow-icon-in-the-action-bar – Paul Burke Aug 26 '12 at 14:05