HomeSort by relevance Sort by last modified time
    Searched defs:AutoCompleteTextView (Results 1 - 12 of 12) sorted by null

  /cts/tests/tests/widget/src/android/widget/cts/
AutoCompleteTextViewTest.java 40 import android.widget.AutoCompleteTextView;
43 import android.widget.AutoCompleteTextView.Validator;
62 private AutoCompleteTextView mAutoCompleteTextView;
91 mAutoCompleteTextView = (AutoCompleteTextView) mActivity
104 // new the AutoCompleteTextView instance
105 new AutoCompleteTextView(mActivity);
107 // new the AutoCompleteTextView instance
110 new AutoCompleteTextView(mActivity, attributeSet);
111 new AutoCompleteTextView(mActivity, null);
113 // new the AutoCompleteTextView instanc
    [all...]
  /frameworks/base/core/java/android/widget/
AutoCompleteTextView.java 67 * AutoCompleteTextView textView = (AutoCompleteTextView)
91 public class AutoCompleteTextView extends EditText implements Filter.FilterListener {
93 static final String TAG = "AutoCompleteTextView";
128 public AutoCompleteTextView(Context context) {
132 public AutoCompleteTextView(Context context, AttributeSet attrs) {
136 public AutoCompleteTextView(Context context, AttributeSet attrs, int defStyle) {
146 attrs, com.android.internal.R.styleable.AutoCompleteTextView, defStyle, 0);
595 * Notably, when the AutoCompleteTextView is closed or released, the adapter is not notified.
601 * or by manually closing the cursor when the AutoCompleteTextView is dismissed.</p
    [all...]