My SearchView has a SearchManager as follows
final SearchView searchView = (SearchView) toolbar.findViewById(R.id.search_view);
searchView.setIconifiedByDefault(false); // Do not iconify the widget; expand it by default
SearchManager searchManager = (SearchManager) getSystemService(Context.SEARCH_SERVICE);
searchView.setSearchableInfo(searchManager.getSearchableInfo(getCallingActivity()));
I want to do one simple thing: change the text color of the dropdown items. That's all. No more.
How do I do that? This implementation is part of search interface. I am using android.support.v7.widget.SearchView