Searched defs:textView (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/widget/
H A DAutoCompleteTextViewPopup.java47 final AutoCompleteTextView textView = theActivity.getTextView();
51 textView.requestFocus();
56 waitAssertListSelection(textView, ListView.INVALID_POSITION);
61 textView.setListSelection(0);
65 waitAssertListSelection("set selection to (0)", textView, 0);
69 waitAssertListSelection("move selection to (1)", textView, 1);
72 clearText(textView);
79 final AutoCompleteTextView textView = theActivity.getTextView();
83 textView.requestFocus();
88 waitAssertListSelection(textView, ListVie
224 waitAssertPopupShowState(String message, AutoCompleteTextView textView, boolean expected) argument
235 waitAssertListSelection(AutoCompleteTextView textView, int expected) argument
240 waitAssertListSelection(String message, AutoCompleteTextView textView, int expected) argument
253 clearText(final AutoCompleteTextView textView) argument
[all...]
/frameworks/policies/base/phone/com/android/internal/policy/impl/
H A DLockScreen.java341 * @param textView The text view.
346 private void toastMessage(final TextView textView, final String text, final int color, final int iconResourceId) { argument
348 textView.removeCallbacks(mPendingR1);
353 textView.removeCallbacks(mPendingR2);
357 final String oldText = textView.getText().toString();
358 final ColorStateList oldColors = textView.getTextColors();
362 textView.setText(text);
364 textView.setTextColor(color);
366 textView.setCompoundDrawablesWithIntrinsicBounds(iconResourceId, 0, 0, 0);
370 textView
[all...]

Completed in 82 milliseconds