我在应用程序中使用的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>