Android ContextMenu如何设置文本颜色和背景颜色?

Android ContextMenu如何设置文本颜色和背景颜色?,android,contextmenu,Android,Contextmenu,我需要更改上下文菜单中文本的颜色。我尝试使用@style,但不起作用。我查了一下帖子:,因为怀疑是相似的,但没有也不起作用。有人可以帮我或告诉我,是不是不可能改变颜色 Tks. @可牵引/背景光 @style/Widget.TextView.Black #000000 @可牵引/背景光 @style/Widget.TextView.Black #000000 <style name= "Theme.Blundell.Light" parent="@android:style/Th

我需要更改上下文菜单中文本的颜色。我尝试使用@style,但不起作用。我查了一下帖子:,因为怀疑是相似的,但没有也不起作用。有人可以帮我或告诉我,是不是不可能改变颜色

Tks.


@可牵引/背景光
@style/Widget.TextView.Black
#000000

@可牵引/背景光
@style/Widget.TextView.Black
#000000
   <style name= "Theme.Blundell.Light" parent="@android:style/Theme.NoTitleBar">
     <item name="android:windowBackground">@drawable/background_light</item>
     <item name="android:textViewStyle">@style/Widget.TextView.Black</item>
   </style>

   <style name="Widget.TextView.Black" parent="@android:style/Widget.TextView">
       <item name="android:textColor">#000000</item>
   </style>