CandySearch.MainActivity.OnQueryTextChange C# (CSharp) Method

OnQueryTextChange() public method

public OnQueryTextChange ( string newText ) : bool
newText string
return bool
        public bool OnQueryTextChange(string newText) {
            //throw new NotImplementedException();
            //Console.WriteLine("OnQueryTextChange: {0}", newText);
            var candyAdapter = (CandyAdapter)listView.Adapter;
            candyAdapter.Filter(newText);
            return true;
        }

Same methods

MainActivity::OnQueryTextChange ( object sender, Android.Widget.SearchView e ) : void