HomeSort by relevance Sort by last modified time
    Searched defs:onQueryTextChange (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
SearchViewBindingAdapter.java 34 @BindingAdapter(value = {"android:onQueryTextSubmit", "android:onQueryTextChange"},
37 final OnQueryTextChange change) {
53 public boolean onQueryTextChange(String newText) {
55 return change.onQueryTextChange(newText);
102 public interface OnQueryTextChange {
103 boolean onQueryTextChange(String newText);
  /frameworks/support/compat/honeycomb/android/support/v4/widget/
SearchViewCompatHoneycomb.java 44 boolean onQueryTextChange(String newText);
70 public boolean onQueryTextChange(String newText) {
71 return listener.onQueryTextChange(newText);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarUsage.java 83 public boolean onQueryTextChange(String newText) {
LoaderCursor.java 127 public boolean onQueryTextChange(String newText) {
LoaderRetained.java 132 public boolean onQueryTextChange(String newText) {
LoaderCustom.java 463 @Override public boolean onQueryTextChange(String newText) {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
SearchViewActionBar.java 97 public boolean onQueryTextChange(String newText) {
SearchViewFilterMode.java 66 public boolean onQueryTextChange(String newText) {
WindowFocusObserver.java 83 public boolean onQueryTextChange(String newText) {
ContentBrowserActivity.java 243 public boolean onQueryTextChange(String newText) {
ContentBrowserNavActivity.java 245 public boolean onQueryTextChange(String newText) {
SystemUIModes.java 309 public boolean onQueryTextChange(String newText) {
VideoPlayerActivity.java 260 public boolean onQueryTextChange(String newText) {
  /frameworks/support/samples/Support13Demos/src/com/example/android/supportv13/app/
CursorFragment.java 84 public boolean onQueryTextChange(String newText) {
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
SearchFragment.java 74 public boolean onQueryTextChange(String newQuery) {
  /frameworks/support/compat/java/android/support/v4/widget/
SearchViewCompat.java 157 public boolean onQueryTextChange(String newText) {
158 return listener.onQueryTextChange(newText);
361 public boolean onQueryTextChange(String newText) {
392 boolean onQueryTextChange(String newText);
  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
SearchFragment.java 48 public boolean onQueryTextChange(String newQuery) {
SearchSupportFragment.java 50 public boolean onQueryTextChange(String newQuery) {
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
SearchFragment.java 74 public boolean onQueryTextChange(String newQuery) {
  /frameworks/base/core/java/com/android/internal/app/
LocalePickerWithRegion.java 264 public boolean onQueryTextChange(String newText) {
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
SearchViewManager.java 262 public boolean onQueryTextChange(String newText) {
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
ListenerBindingObject.java 126 public boolean onQueryTextChange(String newText) {
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactSelectionActivity.java 500 public boolean onQueryTextChange(String newText) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
SearchFragment.java 88 * <p>Method invoked some time prior to the first call to onQueryTextChange to retrieve
110 public boolean onQueryTextChange(String newQuery);
554 * {@link SearchResultProvider#onQueryTextChange onQueryTextChange} or
618 if (mProvider.onQueryTextChange(searchQuery)) {
SearchSupportFragment.java 90 * <p>Method invoked some time prior to the first call to onQueryTextChange to retrieve
112 public boolean onQueryTextChange(String newQuery);
556 * {@link SearchResultProvider#onQueryTextChange onQueryTextChange} or
620 if (mProvider.onQueryTextChange(searchQuery)) {

Completed in 464 milliseconds

1 2 3 4