I want to set the background of my popup menu like in the given image:
Is there any way to set this background for the given popup menu in android? If anyone have any idea please help me in accomplishing this.
I want to set the background of my popup menu like in the given image:
Is there any way to set this background for the given popup menu in android? If anyone have any idea please help me in accomplishing this.
you can style your pop-up menu in the xml
file
Like this:
I simply change the color to #ffffff means Hex white!
<style name="style" parent="android:Theme.Holo.Light">
<item name="android:popupMenuStyle">...</item>
<item name="android:popupAnimationStyle">...</item>
<item name="android:popupBackground">#ffff</item>
<!-- etc etc -->