/ / Wie ändert man die Farbe im Optionsmenü? [Duplizieren] - Android, Farben, Menü, Optionen

Wie ändere ich die Farbe des Optionsmenüs? [Duplizieren] - Android, Farben, Menü, Optionen

Ich möchte die Farbe des Menüs "Optionen" in Weiß ändern. Ich habe versucht, ein Bild hinzuzufügen, aber es funktioniert nicht. Wie geht das?

Bildbeschreibung hier eingeben

Menü 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>

Vielen Dank.

Antworten:

44 für die Antwort № 1

Setze es in deine style.xml im AppTheme:

<!-- android:textColorSecondary is the color of the menu overflow icon (three vertical dots) -->
<item name="android:textColorSecondary">@color/white</item>

9 für die Antwort № 2

Sie können das verwendete Bild mithilfe der folgenden Stildeklaration ändern.

<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>