web-dev-qa-db-ja.com

オプションメニューのドットの色を変更するには?

オプションメニューのドットの色を白に変更したい。このために画像を追加しようとしましたが、うまくいきません。これを行う方法?

enter image description here

メニュー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>

ありがとうございました。

36
Sid

style.xml in AppTheme

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

次のスタイル宣言を使用して、使用する画像を変更できます。

<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>
14
Android Geek