I want to change the background of pop-up for a spinner, basically, I want to put the image for pop-up as I did for my app background. I read many suggestions and made the proper entries for android:popupBackground, but it's still not working.
I have been really looking for a solution for a month but can't find it. Any help is very much appreciated. Here is my code:
<Spinner
android:layout_width="match_parent"
android:layout_height="@dimen/input_field_height"
android:prompt="@string/state_select_text"
android:id="@+id/home_adr_state"
android:textColor="@color/input_color_text"
android:spinnerMode="dialog"
android:entries="@array/State_list"
android:popupBackground="@drawable/app_bg"
/>