更换 PopupMenu 背景色
Silica(讨论 | 贡献)2019年10月23日 (三) 02:43的版本 (创建页面,内容为“Category:Android 2019-10-23 10:38 == 代码 == <pre> styles.xml <style name="popupMenuStyle" parent="Theme.AppCompat.Light.DarkActionBar"> <item name="andr…”)
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 下显示>);
效果
其它
有一种是这样的:
<style name="popupMenuStyle" parent="@android:style/Widget.PopupMenu"> <item name="android:popupBackground">@color/black</item> </style>
但在我这里并没有生效。