Lines Matching refs:SearchView

76  * When the SearchView is used in an ActionBar as an action view for a collapsible menu item, it
86 * <p>For information about using {@code SearchView}, read the
97 public class SearchView extends LinearLayout implements CollapsibleActionView {
100 private static final String LOG_TAG = "SearchView";
123 /** Icon optionally displayed when the SearchView is collapsed. */
163 * SearchView can be set expanded before the IME is ready to be shown during
205 * let the SearchView handle the submission by launching any associated intent.
210 * SearchView perform the default action.
219 * @return false if the SearchView should perform the default action of showing any
228 * The user is attempting to close the SearchView.
262 public SearchView(Context context) {
266 public SearchView(Context context, AttributeSet attrs) {
270 public SearchView(Context context, AttributeSet attrs, int defStyleAttr) {
274 public SearchView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
278 attrs, R.styleable.SearchView, defStyleAttr, defStyleRes);
336 mOnQueryTextFocusChangeListener.onFocusChange(SearchView.this, hasFocus);
399 * Sets the SearchableInfo for this SearchView. Properties in the SearchableInfo are used
482 // Check if SearchView is focusable.
507 * Sets a listener for user actions within the SearchView.
510 * actions in the SearchView such as clicking on buttons or typing a query.
517 * Sets a listener to inform when the user closes the SearchView.
519 * @param listener the listener to call when the user closes the SearchView.
660 * Iconifies or expands the SearchView. Any query text is cleared when iconified. This is
666 * @param iconify a true value will collapse the SearchView to an icon, while a false will
678 * Returns the current iconified state of the SearchView.
680 * @return true if the SearchView is currently iconified, false if the search field is
688 * Enables showing a submit button when the query is non-empty. In cases where the SearchView
1414 return "SearchView.SavedState{"
1449 return SearchView.class.getName();
1514 SearchView.this.onItemSelected(position);
1802 SearchView.this.onTextChanged(s);
1911 private SearchView mSearchView;
1942 void setSearchView(SearchView searchView) {