Home | History | Annotate | Download | only in ui

Lines Matching refs:suggestions

21 import com.android.quicksearchbox.Suggestions;
32 * Base class for suggestions adapters. The templated class A is the list adapter class.
45 private Suggestions mSuggestions;
85 public void setSuggestions(Suggestions suggestions) {
86 if (mSuggestions == suggestions) {
90 if (suggestions != null) {
91 suggestions.release();
98 // TODO: delay the change if there are no suggestions for the currently visible tab.
103 mSuggestions = suggestions;
111 public Suggestions getSuggestions() {
151 protected View getView(SuggestionCursor suggestions, int position, long suggestionId,
153 suggestions.moveTo(position);
154 View v = mViewFactory.getView(suggestions, suggestions.getUserQuery(), convertView, parent);
185 * {@link #setSuggestions(Suggestions)}.