/development/samples/ApiDemos/src/com/example/android/apis/app/ |
D | ActionBarUsage.java | 83 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument 84 newText = newText.isEmpty() ? "" : "Query so far: " + newText; in onQueryTextChange() 85 mSearchText.setText(newText); in onQueryTextChange()
|
D | LoaderRetained.java | 132 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument 136 String newFilter = !TextUtils.isEmpty(newText) ? newText : null; in onQueryTextChange()
|
D | LoaderCursor.java | 127 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument 131 String newFilter = !TextUtils.isEmpty(newText) ? newText : null; in onQueryTextChange()
|
D | LoaderCustom.java | 463 @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/ |
D | ActionBarUsage.java | 93 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/ |
D | SearchViewFilterMode.java | 66 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument 67 if (TextUtils.isEmpty(newText)) { in onQueryTextChange() 70 mListView.setFilterText(newText.toString()); in onQueryTextChange()
|
D | SearchViewActionBar.java | 97 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument 98 mStatusView.setText("Query = " + newText); in onQueryTextChange()
|
D | WindowFocusObserver.java | 83 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
|
D | VideoPlayerActivity.java | 260 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
|
D | ContentBrowserActivity.java | 243 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
|
D | ContentBrowserNavActivity.java | 245 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
|
D | SystemUIModes.java | 309 public boolean onQueryTextChange(String newText) { in onQueryTextChange() argument
|
/development/samples/Support13Demos/src/com/example/android/supportv13/app/ |
D | CursorFragment.java | 84 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/ |
D | LoaderRetainedSupport.java | 112 public boolean onQueryTextChange(String newText) { in onCreateOptionsMenu() 116 String newFilter = !TextUtils.isEmpty(newText) ? newText : null; in onCreateOptionsMenu()
|
D | LoaderCursorSupport.java | 110 public boolean onQueryTextChange(String newText) { in onCreateOptionsMenu() 114 String newFilter = !TextUtils.isEmpty(newText) ? newText : null; in onCreateOptionsMenu()
|
D | LoaderCustomSupport.java | 449 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/ |
D | ClippingBasicFragment.java | 116 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/ |
D | ContactsListFragment.java | 349 public boolean onQueryTextChange(String newText) { in onCreateOptionsMenu() 353 String newFilter = !TextUtils.isEmpty(newText) ? newText : null; in onCreateOptionsMenu()
|