trying to change the color of the three dots for the android overflow button. I looked online for a solution and couldn't seem to find a clear answer. I looked at this stackOverflow post: Change color of the overflow button on ActionBar and the solution didn't work. I didn't really see the logic going in though, and copying and pasting the solution into my code didn't seem like the most sure fire route. If anyone has any tips, or would be willing to explain solution from the previous post on the same question, that would be awesome. Thanks!
Asked
Active
Viewed 601 times
3
-
Can you tell us where in the previous post you don't understand? – CChi Aug 28 '14 at 01:18
-
well, it seems like the answer to that post claims that all you have to do is copy and paste the code that it gives into 'styles'. That didn't work. Also, I don't even see how it works, as it doesn't access any android specific variables related to the overflow button. – bgenchel Aug 28 '14 at 16:27
-
That post is right. I have used the exact same technique to replace the overflow icon. This technique is call style and theme. When you do custom view, the three argument constructor would use the values set in style and theme to get the custom overflow icon image. – CChi Aug 28 '14 at 19:20
-
i see, but you can't change the color of the current icon correct? – bgenchel Aug 28 '14 at 19:21
-
You can change the color of the current icon by supplying a different image, but I am not sure if you can do it via code as i never tried it. – CChi Aug 28 '14 at 19:29
-
possible duplicate of [Change color of the overflow button on ActionBar](http://stackoverflow.com/questions/11425660/change-color-of-the-overflow-button-on-actionbar) – Bob Aug 26 '15 at 16:18