Is it possible to change the color of the overflow button(3 vertical dots) on the action bar? If so, how do we do that? I didn't find any style for overflow button.
Thanks
Is it possible to change the color of the overflow button(3 vertical dots) on the action bar? If so, how do we do that? I didn't find any style for overflow button.
Thanks
To change overflow icon color to color of your choice..... User them
Other programmatically option:
Hope it helps!
just add this line in your choosen style in style.xma file
<item name="colorControlNormal">@color/white</item>
its working fine. if you use
<item name="textColorSecondary">@color/white</item>
then your other items like drawer navigation menu icons color and radio button will be affected
You can change the image used for it using the following style declaration.
And if you're using ActionBarSherlock, here's how to do it
If you are using the latest Toolbar, you have to put the statement in styles.xml, as shown in the code below:
If you just want to get the 3 dots icon white instead of black you can simply change the theme of the toolbar to this:
full reference here: medium.com/the-curious-case-of-the-overflow-icon-color