Home
last modified time | relevance | path

Searched refs:newText (Results 1 – 18 of 18) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/app/
DActionBarUsage.java83 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
84 newText = newText.isEmpty() ? "" : "Query so far: " + newText; in onQueryTextChange()
85 mSearchText.setText(newText); in onQueryTextChange()
DLoaderRetained.java132 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
136 String newFilter = !TextUtils.isEmpty(newText) ? newText : null; in onQueryTextChange()
DLoaderCursor.java127 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
131 String newFilter = !TextUtils.isEmpty(newText) ? newText : null; in onQueryTextChange()
DLoaderCustom.java463 @Override public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
466 mCurFilter = !TextUtils.isEmpty(newText) ? newText : null; in onQueryTextChange()
/development/samples/Support7Demos/src/com/example/android/supportv7/app/
DActionBarUsage.java93 public boolean onQueryTextChange(String newText) {
94 newText = TextUtils.isEmpty(newText) ? "" : "Query so far: " + newText;
95 mSearchText.setText(newText);
/development/samples/ApiDemos/src/com/example/android/apis/view/
DSearchViewFilterMode.java66 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
67 if (TextUtils.isEmpty(newText)) { in onQueryTextChange()
70 mListView.setFilterText(newText.toString()); in onQueryTextChange()
DSearchViewActionBar.java97 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
98 mStatusView.setText("Query = " + newText); in onQueryTextChange()
DWindowFocusObserver.java83 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
DVideoPlayerActivity.java260 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
DContentBrowserActivity.java243 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
DContentBrowserNavActivity.java245 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
DSystemUIModes.java309 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
/development/samples/Support13Demos/src/com/example/android/supportv13/app/
DCursorFragment.java84 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
88 mCurFilter = !TextUtils.isEmpty(newText) ? newText : null; in onQueryTextChange()
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
DLoaderRetainedSupport.java112 public boolean onQueryTextChange(String newText) { in onCreateOptionsMenu()
116 String newFilter = !TextUtils.isEmpty(newText) ? newText : null; in onCreateOptionsMenu()
DLoaderCursorSupport.java110 public boolean onQueryTextChange(String newText) { in onCreateOptionsMenu()
114 String newFilter = !TextUtils.isEmpty(newText) ? newText : null; in onCreateOptionsMenu()
DLoaderCustomSupport.java449 public boolean onQueryTextChange(String newText) { in onCreateOptionsMenu()
452 mCurFilter = !TextUtils.isEmpty(newText) ? newText : null; in onCreateOptionsMenu()
/development/samples/browseable/ClippingBasic/src/com.example.android.clippingbasic/
DClippingBasicFragment.java116 String newText = mSampleTexts[mClickCount % mSampleTexts.length]; in changeText() local
119 mTextView.setText(newText); in changeText()
/development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
DContactsListFragment.java349 public boolean onQueryTextChange(String newText) { in onCreateOptionsMenu()
353 String newFilter = !TextUtils.isEmpty(newText) ? newText : null; in onCreateOptionsMenu()