简体   繁体   中英

how can I change toolbar searchView drop down menu theme to be light in android app

i have developed an android app with search view on action bar but the suggestion drop down menu items are dark. is there a way i can turn the drop down menu to light ?

this is my style.xml file

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>

    <!--<item name="android:dropDownListViewStyle">@android:style/Widget.DeviceDefault.Light.ListView.DropDown</item>-->
    <item name="colorAccent">@color/colorAccent</item>
    <item name="android:actionBarWidgetTheme">@style/Widget.AppCompat.Light.ActionBar</item>
    <item name="android:popupMenuStyle">@android:style/Widget.Holo.Light.PopupMenu</item>
    <!--<item name="android:dropDownListViewStyle">@android:style/Theme.Light</item>-->
</style>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

<style name="AppTheme.ButtonBase" parent="Widget.AppCompat.Button.Colored">
    <item name="android:paddingTop">12dip</item>
    <item name="android:paddingBottom">12dip</item>
    <item name="android:textSize">16.9sp</item>
    <item name="android:textStyle">bold</item>
</style>

<style name="AppTheme.ButtonPrimary" parent="AppTheme.ButtonBase">
    <item name="colorButtonNormal">@color/buttonPrimary</item>
    <item name="android:textColor">@color/textLight</item>
</style>


<style name="MineCustomTabText" parent="TextAppearance.Design.Tab">
    <item name="android:textSize">18sp</item>
</style>

<style name="AppTheme.ButtonSecondary" parent="AppTheme.ButtonBase">
    <item name="android:textColor">@color/textLight</item>
</style>

Just comment out your style code.

this one

android:dropDownListViewStyle

Now run your app again.

It may helped you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM