android.support.v4.widget
Class SearchViewCompat.OnQueryTextListenerCompat

java.lang.Object
  extended by android.support.v4.widget.SearchViewCompat.OnQueryTextListenerCompat
Enclosing class:
SearchViewCompat

public abstract static class SearchViewCompat.OnQueryTextListenerCompat
extends java.lang.Object

Callbacks for changes to the query text.


Constructor Summary
SearchViewCompat.OnQueryTextListenerCompat()
           
 
Method Summary
 boolean onQueryTextChange(java.lang.String newText)
          Called when the query text is changed by the user.
 boolean onQueryTextSubmit(java.lang.String query)
          Called when the user submits the query.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SearchViewCompat.OnQueryTextListenerCompat

public SearchViewCompat.OnQueryTextListenerCompat()
Method Detail

onQueryTextSubmit

public boolean onQueryTextSubmit(java.lang.String query)
Called when the user submits the query. This could be due to a key press on the keyboard or due to pressing a submit button. The listener can override the standard behavior by returning true to indicate that it has handled the submit request. Otherwise return false to let the SearchView handle the submission by launching any associated intent.

Parameters:
query - the query text that is to be submitted
Returns:
true if the query has been handled by the listener, false to let the SearchView perform the default action.

onQueryTextChange

public boolean onQueryTextChange(java.lang.String newText)
Called when the query text is changed by the user.

Parameters:
newText - the new content of the query text field.
Returns:
false if the SearchView should perform the default action of showing any suggestions if available, true if the action was handled by the listener.