Lines Matching refs:SearchView

95  * <em>only</em>, you should instead use the framework {@link android.widget.SearchView} class.</p>
98 * When the SearchView is used in an {@link android.support.v7.app.ActionBar}
108 * <p>For information about using {@code SearchView}, read the
116 public class SearchView extends LinearLayoutCompat implements CollapsibleActionView {
119 static final String LOG_TAG = "SearchView";
142 /** Icon optionally displayed when the SearchView is collapsed. */
184 * SearchView can be set expanded before the IME is ready to be shown during
194 HIDDEN_METHOD_INVOKER.showSoftInputUnchecked(imm, SearchView.this, 0);
230 * let the SearchView handle the submission by launching any associated intent.
235 * SearchView perform the default action.
244 * @return false if the SearchView should perform the default action of showing any
253 * The user is attempting to close the SearchView.
287 public SearchView(Context context) {
291 public SearchView(Context context, AttributeSet attrs) {
295 public SearchView(Context context, AttributeSet attrs, int defStyleAttr) {
299 attrs, R.styleable.SearchView, defStyleAttr, 0);
353 mOnQueryTextFocusChangeListener.onFocusChange(SearchView.this, hasFocus);
435 * Sets the SearchableInfo for this SearchView. Properties in the SearchableInfo are used
520 // Check if SearchView is focusable.
546 * Sets a listener for user actions within the SearchView.
549 * actions in the SearchView such as clicking on buttons or typing a query.
556 * Sets a listener to inform when the user closes the SearchView.
558 * @param listener the listener to call when the user closes the SearchView.
700 * Iconifies or expands the SearchView. Any query text is cleared when iconified. This is
706 * @param iconify a true value will collapse the SearchView to an icon, while a false will
718 * Returns the current iconified state of the SearchView.
720 * @return true if the SearchView is currently iconified, false if the search field is
728 * Enables showing a submit button when the query is non-empty. In cases where the SearchView
1375 return "SearchView.SavedState{"
1478 SearchView.this.onItemSelected(position);
1767 SearchView.this.onTextChanged(s);
1878 private SearchView mSearchView;
1901 void setSearchView(SearchView searchView) {