CandySearch.MainActivity.OnQueryTextChange C# (CSharp) 메소드

OnQueryTextChange() 공개 메소드

public OnQueryTextChange ( string newText ) : bool
newText string
리턴 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