I want to change the menu icon of ActionBar
, those 3 points that have the default option "Settings".
I've already tried Style by 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>
homeAsUpIndicator
works perfectly, but Action Button Style does not.
Any tips?