Search code examples
c#androidsearchview

How i can set the Searchbar Inative and User click on this for open a Dialog


My Question is how can i Build in Android C# an SreachView this is off by but Show and any User click on this a Dialog open and asked the User to give her ok.

I work in a Fragment

SearchView searchView;
searchView = (SearchView)View.FindViewById(Resource.Id.MenuSearchitem);
searchView.ClearFocus();
searchView.SetOnQueryTextListener(this);
searchView.SetOnQueryTextFocusChangeListener(this);
searchView.SetIconifiedByDefault(false);
searchView.SubmitButtonEnabled = true;
searchView.QueryHint = mapViewModel.AddressPlaceholder;

thats all fine, but nothing work for click on the searchbar and no dialog is open. follow ways i have used IOnFocusChangeListener and IOnSuggestionListener dont gave the right way for me


Solution

  • you can use onTouchListner, wherever you will touch on the screen the touch event will be triggered, there you can check which widget is clicked just check it and open dialog in it.