我需要更改 ContextMenu 中文本的颜色。我尝试使用@style,但不起作用。我检查了帖子:将应用程序主题 textColor 设置为白色会导致上下文菜单项文本为白色(不可见),因为怀疑是相似的,但也没有不工作。有人可以帮助我或告诉我不可能改变颜色吗?
谢了。
我需要更改 ContextMenu 中文本的颜色。我尝试使用@style,但不起作用。我检查了帖子:将应用程序主题 textColor 设置为白色会导致上下文菜单项文本为白色(不可见),因为怀疑是相似的,但也没有不工作。有人可以帮助我或告诉我不可能改变颜色吗?
谢了。
<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>