I created a style that changes the background color of the popup menu, and now I need to know how to change the text color of the menu item. Below is the style I use
<style name="AppTheme" parent="android:Theme.Holo">
<item name="android:popupMenuStyle">@style/PopupMenu</item>
</style>
<style name="PopupMenu" parent="@android:style/Widget.PopupMenu">
<item name="android:popupBackground">@color/popup_menu_bg_color</item>
</style>
source
share