本文介绍了在 Android 中更改背景 popupMenu的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我尝试更改弹出菜单的背景,但我的实现不起作用.
I tried to change background of popupmenu, but my implementation does not work.
这是我的代码:
<style name="MyHoloLight" parent="android:Theme.Holo.Light">
<item name="android:popupMenuStyle">@style/popupMenuStyle</item>
</style>
<style name="popupMenuStyle" parent="@android:style/Widget.PopupMenu">
<item name="android:popupBackground">@color/bgPopumMenu</item>
</style>
在 AndroidManifest.xml 中应用
Apply in AndroidManifest.xml
<application
android:hardwareAccelerated="true"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:theme="@style/MyHoloLight">
推荐答案
以下样式非常适合我.
<style name="popupMenuStyle" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:textColor">@color/color_white</item>
<item name="android:itemBackground">@color/color_red</item>
</style>
这里,父应该是 AppTheme 父
并在您的代码中使用这些行.
and in your code use these lines.
Context wrapper = new ContextThemeWrapper(context, R.style.popupMenuStyle);
PopupMenu popup = new PopupMenu(wrapper, v);
我希望它会奏效.
这篇关于在 Android 中更改背景 popupMenu的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!