To change the action overflow menu icon first you need to create a style for the overflow icon in which you need to set the new icon then use this style in your app theme.
Step 1
Create a style for your menu overflow icon in styles.xml and set the drawable for the icon.
<style name="MyActionButtonOverflow" parent="android:style/Widget.Holo.ActionButton.Overflow">
<item name="android:src">@drawable/dots_vertical</item>
</style>
Step 2
Now set the above style i.e. "MyActionButtonOverflow" in your application theme in the item "android:actionOverflowButtonStyle"
<item name="android:actionOverflowButtonStyle">@style/MyActionButtonOverflow</item>
0 Comment(s)