java.lang.Object |
↳ |
android.support.v4.widget.SearchViewCompat.OnQueryTextListenerCompat |
Class Overview
Callbacks for changes to the query text.
Summary
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this Object .
|
boolean
|
equals(Object o)
Compares this instance with the specified object and indicates if they
are equal.
|
void
|
finalize()
Invoked when the garbage collector has detected that this instance is no longer reachable.
|
final
Class<?>
|
getClass()
Returns the unique instance of Class that represents this
object's class.
|
int
|
hashCode()
Returns an integer hash code for this object.
|
final
void
|
notify()
Causes a thread which is waiting on this object's monitor (by means of
calling one of the wait() methods) to be woken up.
|
final
void
|
notifyAll()
Causes all threads which are waiting on this object's monitor (by means
of calling one of the wait() methods) to be woken up.
|
String
|
toString()
Returns a string containing a concise, human-readable description of this
object.
|
final
void
|
wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
|
final
void
|
wait(long millis, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait(long millis)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
|
Public Constructors
public
SearchViewCompat.OnQueryTextListenerCompat
()
Public Methods
public
boolean
onQueryTextChange
(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.
public
boolean
onQueryTextSubmit
(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.