android材质searchview将文本和图标显示为灰色

时间:2016-02-24 06:34:26

标签: android searchview

我在应用程序中使用的github(https://github.com/MiguelCatalan/MaterialSearchView)的材质搜索视图显示文本颜色和关闭图标为灰色,尽管我将其设置为白色。也包括了屏幕截图。

activity_main.xml中:

<com.miguelcatalan.materialsearchview.MaterialSearchView
            android:id="@+id/search_view"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            style="@style/MaterialSearchView"/>

styles.xml:

 <style name="MaterialSearchView">
    <item name="searchBackIcon">@drawable/left</item>
    <item name="android:textColorHint">#ffffff</item>
    <item name="searchBackground">@color/searchbackground</item>
    <item name="searchCloseIcon">@drawable/close</item>
    <item name="searchSuggestionIcon">@drawable/marker2</item>
    <item name="android:textColor">@color/searchtextcolor</item>

</style>

colors.xml:

<color name="searchbackground">#7986CB</color>
    <color name="searchtextcolor">#ffffff</color>

截图:enter image description here

0 个答案:

没有答案