更改上下文操作栏溢出样式

时间:2016-02-03 12:03:42

标签: android

我想更改上下文操作栏溢出区域的样式(文本和/或背景颜色)。

目前文本颜色取自当前主题中的android:textColor,但我想为溢出下拉列表使用不同的颜色。

我可以使用android:actionModeBackground更改CAB的背景颜色,但不能更改溢出区域。

我的风格目前看起来像这样:

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
    <item name="windowActionModeOverlay">true</item>
    <item name="android:textColor">#3e3e3e</item>

</style>

有什么想法吗?

谢谢

1 个答案:

答案 0 :(得分:1)

使用以下项目

   <item name="actionOverflowMenuStyle">@style/LStyled.PopupMenu.OverflowMenu</item>

定义样式LStyled.PopupMenu.OverflowMenu

<style name="LStyled.PopupMenu.OverflowMenu" parent="@style/Widget.AppCompat.PopupMenu.Overflow">
  <item name="android:popupBackground">@drawable/bground</item>
 </style>