I already looked at Styling android search view and drop down list in actionbar and it only works if the SearchView is in the ActionBar. The problem is I have two SearchViews. The one in the ActionBar works well with the suggested changes. But the other one, which is just inside a layout, is not working. How do I fix it? I tried applying the appTheme style to it, still nothing
<android.support.v7.widget.SearchView
android:id="@+id/search_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/AppTheme"
android:background="@color/colorPrimaryLight"
>
</android.support.v7.widget.SearchView>