更换 PopupMenu 背景色

来自Silica Library | 間奏時光
跳到导航 跳到搜索

2019-10-23 10:38

代码

styles.xml

<style name="popupMenuStyle" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="android:textColor">@color/white</item>
    <item name="android:itemBackground">@color/black</item>
</style>
new PopupMenu(new ContextThemeWrapper(this, R.style.popupMenuStyle), <在此 View 下显示>);

效果

Popup menu night.PNG

其它

  有一种是这样的:

<style name="popupMenuStyle" parent="@android:style/Widget.PopupMenu">
    <item name="android:popupBackground">@color/black</item>
</style>

  但在我这里并没有生效。