Je souhaite modifier la couleur des points du menu Options en blanc. J'ai essayé d'ajouter une image pour cela mais la dose ne fonctionnait pas. Comment faire ça?
menu xml:
<menu xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:app="http://schemas.Android.com/apk/res-auto"
xmlns:tools="http://schemas.Android.com/tools"
tools:context="com.example.siddhi.timetablelayout.Main2Activity">
<item Android:id="@+id/action_settings" Android:title="@string/action_settings"
Android:orderInCategory="100" app:showAsAction="never"
Android:icon="@drawable/ic_more_vert_white_48dp"/>
</menu>
Merci.
Mettez-le dans votre style.xml
dans AppTheme
:
<!-- Android:textColorSecondary is the color of the menu overflow icon (three vertical dots) -->
<item name="Android:textColorSecondary">@color/white</item>
Vous pouvez modifier l'image utilisée à l'aide de la déclaration de style suivante.
<style name="MyCustomTheme" parent="style/Theme.Holo">
<item name="Android:actionOverflowButtonStyle">@style/MyCustomTheme.OverFlow</item>
</style>
<style name="MyCustomTheme.OverFlow">
<item name="Android:src">@drawable/my_overflow_image</item>
</style>