Searched refs:newText (Results 1 – 13 of 13) sorted by relevance
83 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument84 newText = newText.isEmpty() ? "" : "Query so far: " + newText; in onQueryTextChange()85 mSearchText.setText(newText); in onQueryTextChange()
127 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument131 String newFilter = !TextUtils.isEmpty(newText) ? newText : null; in onQueryTextChange()
132 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument136 String newFilter = !TextUtils.isEmpty(newText) ? newText : null; in onQueryTextChange()
463 @Override public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument466 mCurFilter = !TextUtils.isEmpty(newText) ? newText : null; in onQueryTextChange()
66 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument67 if (TextUtils.isEmpty(newText)) { in onQueryTextChange()70 mListView.setFilterText(newText.toString()); in onQueryTextChange()
97 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument98 mStatusView.setText("Query = " + newText); in onQueryTextChange()
83 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
260 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
245 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
243 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
309 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
116 String newText = mSampleTexts[mClickCount % mSampleTexts.length]; in changeText() local119 mTextView.setText(newText); in changeText()
349 public boolean onQueryTextChange(String newText) { in onCreateOptionsMenu()353 String newFilter = !TextUtils.isEmpty(newText) ? newText : null; in onCreateOptionsMenu()