Spinner Theme is dark in Android

前端 未结 1 1054
甜味超标
甜味超标 2021-01-05 01:54

I am trying to change the toolbar spinner dropdown theme strangely this is not happening. It is coming up always dark when I click on the spinner. I would like to have the b

相关标签:
1条回答
  • 2021-01-05 02:19

    Just add the following to your Spinner the same way you did for your Toolbar:

    local:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    

    So your final Spinner will look like this:

    <Spinner
        android:id="@+id/spinner"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:minWidth="80dp"
        android:spinnerMode="dropdown"
        local:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:visibility="gone" />
    
    0 讨论(0)
提交回复
热议问题