8
I want to change the menu icon for ActionBar
, those 3 points that have as default option "Settings".
I’ve tried for the Style creating a custom theme and there putting the new icon but it did not work.
<style name="CustomActivityTheme" parent="AppTheme">
<item name="android:homeAsUpIndicator">@drawable/botaohome</item>
<item name="android:actionButtonStyle">@drawable/actionbuttonwhite</item>
</style>
The homeAsUpIndicator
It works perfectly, but the same thing didn’t happen with Action Button Style.
Any hint ?
You talk put icon on the Settings button that comes as default?
– Ilgner de Oliveira
That’s it! Some idea?
– Lucas Soares
You can disable the action bar and activate a Toolbar. In it vc would have full control, color, icons and etc.
– Alex Ferreira
There’s another topic here, see <https://stackoverflow.com/questions/9733312/changing-overflow-icon-in-the-action-bar> I think this video might also help you <https://www.youtube.com/watch?v=ycpgcx_QB3Y>
– Sr Max