Searched defs:textView (Results 1 - 5 of 5) 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/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DCustomBar.java203 TextView textView = (TextView) child;
204 setText(textView, stringReference);
205 return textView;
214 TextView textView = (TextView) child;
215 setText(textView, stringReference);
216 return textView;
222 private void setText(TextView textView, String stringReference) { argument
225 textView.setText(value.getValue());
227 textView.setText(stringReference);
256 TextView textView
[all...]
/frameworks/base/core/java/android/widget/
H A DSpellChecker.java104 public SpellChecker(TextView textView) { argument
105 mTextView = textView;
H A DEditor.java191 Editor(TextView textView) { argument
192 mTextView = textView;
2275 TextView textView = (TextView) convertView;
2277 if (textView == null) {
2278 textView = (TextView) mInflater.inflate(mTextView.mTextEditSuggestionItemLayout,
2283 textView.setText(suggestionInfo.text);
2286 textView.setCompoundDrawablesWithIntrinsicBounds(
2289 textView.setCompoundDrawablesWithIntrinsicBounds(
2292 textView.setCompoundDrawables(null, null, null, null);
2295 return textView;
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DKeyguardStatusViewManager.java124 TransientTextManager(TextView textView) { argument
125 mTextView = textView;

Completed in 391 milliseconds