beraybentesen / material-searchview-xamarin-android

5 stars 2 forks source link

Suggestions are not showing up #2

Open lekve11 opened 7 years ago

lekve11 commented 7 years ago

i want to show suggestions by query i use

_searchView.SetSuggestions(new string[] { "one"}); _searchView.ShowSuggestions();

but it does not work, any ideas?

beraybentesen commented 7 years ago

Could you fill an empty string array and pass while setting adapter ?

Like this :

var searchAdapter = new SearchAdapter(this, YourStringArray, ContextCompat.GetDrawable(this, Resource.Drawable.vector_map), true, this); materialSearchView.SetAdapter(searchAdapter);