how to change android spinner popupBackground

后端 未结 2 332
孤城傲影
孤城傲影 2021-01-18 04:18

I was trying to change the android spinner popup window background by setting the android:popupBackground, but it didn\'t have any effect. Is there any way I can change it?

2条回答
  •  心在旅途
    2021-01-18 05:17

    android:popupBackground is only valid when using android:spinnerMode = "dropdown" , thats probably why it wasnt any effect in your code. You need to tell that spinner which mode its in with some XML.

    android:spinnerMode = "dropdown"
    

    Links

    • http://developer.android.com/reference/android/widget/Spinner.html#attr_android:popupBackground
    • http://developer.android.com/reference/android/widget/Spinner.html

提交回复
热议问题