How to change option menu icon in the action bar?
The following lines should be updated in app -> main -> res -> values -> Styles.xml <!– Application theme. –> <style name=”AppTheme” parent=”AppBaseTheme”> <!– All customizations that are NOT specific to a particular API-level can go here. –> <item name=”android:actionOverflowButtonStyle”>@style/MyActionButtonOverflow</item> </style> <!– Style to replace actionbar overflow icon. set item ‘android:actionOverflowButtonStyle’ in AppTheme –> <style … Read more