Searched refs:setText (Results 1 - 25 of 129) sorted by relevance

123456

/frameworks/base/core/java/android/widget/
H A DTextSwitcher.java30 * {@link #setText(CharSequence)} is called, TextSwitcher animates the current text
76 public void setText(CharSequence text) { method in class:TextSwitcher
78 t.setText(text);
89 ((TextView)getCurrentView()).setText(text);
H A DEditText.java77 public void setText(CharSequence text, BufferType type) { method in class:EditText
78 super.setText(text, BufferType.EDITABLE);
/frameworks/base/core/tests/coretests/src/android/util/
H A DListItemFactory.java59 topButton.setText("top (position " + position + ")");
66 middleFiller.setText("filler");
71 bottomButton.setText("bottom (position " + position + ")");
120 button.setText("left");
128 button.setText("center");
136 button.setText("right");
158 result.setText(text);
178 ((Button) convertView).setText(text);
198 result.setText(text);
218 ((TextView) convertView).setText(tex
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DSimUnlockScreen.java99 mHeaderText.setText(R.string.keyguard_password_enter_pin_code);
121 mHeaderText.setText(R.string.keyguard_password_enter_pin_code);
125 mPinText.setText("");
215 mHeaderText.setText(R.string.invalidPin);
216 mPinText.setText("");
234 mHeaderText.setText(R.string.keyguard_password_wrong_pin_code);
235 mPinText.setText("");
273 mPinText.setText("");
339 mZero.setText("0");
340 mOne.setText("
[all...]
H A DLockScreen.java215 mEmergencyCallButton.setText(R.string.lockscreen_emergency_call);
368 textView.setText(text);
379 textView.setText(oldText);
437 mDate.setText(DateFormat.format(mDateFormatString, new Date()));
450 mStatus1.setText(mCharging);
457 mStatus1.setText(mNextAlarm);
464 mStatus1.setText(mCharging);
466 mStatus2.setText(mNextAlarm);
518 mCarrier.setText(
524 mScreenLocked.setText("");
[all...]
H A DPatternUnlockScreen.java223 mForgotPatternButton.setText(R.string.lockscreen_forgot_pattern_button_text);
257 mCarrier.setText(
285 mStatus1.setText(mInstructions);
300 mStatus1.setText(getContext().getString(R.string.lockscreen_charged));
302 mStatus1.setText(getContext().getString(R.string.lockscreen_plugged_in, mBatteryLevel));
305 mStatus1.setText(getContext().getString(R.string.lockscreen_low_battery));
315 mStatus1.setText(mNextAlarm);
323 mStatus1.setText(mNextAlarm);
324 mStatusSep.setText("|");
325 mStatus2.setText(getContex
[all...]
/frameworks/base/core/tests/coretests/src/android/view/
H A DCreateViewTest.java77 text.setText("S");
83 text.setText("S");
94 one.setText("S");
98 two.setText("M");
102 three.setText("T");
106 four.setText("W");
110 five.setText("H");
114 six.setText("F");
/frameworks/base/core/tests/coretests/src/android/widget/
H A DTextViewTest.java39 tv.setText(c, 1, 4);
42 tv.setText(c, 4, 5);
/frameworks/base/core/tests/coretests/src/android/widget/expandablelistview/
H A DExpandableListWithHeaders.java46 header.setText("Header View " + i);
52 footer.setText("Footer View " + i);
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListWithHeaders.java44 header.setText("Header View");
50 footer.setText("Footer View");
H A DListScrollListener.java58 mText.setText("Position " + position);
62 mText.setText("Nothing");
67 mText.setText("Showing " + firstCell + "-" + last + "/" + itemCount);
H A DListOfTouchables.java43 b.setText("Position " + position);
H A DListItemISVAndButton.java61 topButton.setText("button " + position + ")");
68 filler.setText("filler");
H A DListItemsExpandOnSelection.java45 result.setText(getValueAtPosition(position));
56 ((ExpandWhenSelectedView)convertView).setText(getValueAtPosition(position));
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
H A DFillInWrap.java30 ((TextView) findViewById(R.id.data)).setText("1\n2\n3\n4\n5");
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DTitleBar.java37 mTextView = setText(0, label);
/frameworks/base/core/tests/coretests/src/android/text/util/
H A DLinkifyTest.java34 tv.setText("Hey, foo@google.com, call 415-555-1212.");
46 tv.setText("Hey, foo@google.com, call 415-555-1212.");
59 tv.setText("Hey, foo@google.com, call 415-555-1212.");
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
H A DButtonActivity.java43 myButton.setText("Keyboard UP!");
54 myButton.setText("Keyboard UP!");
61 myButton.setText("Keyboard DOWN!");
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DListOfEditTexts.java57 buttonAbove.setText("button above list");
87 buttonBelow.setText("button below list");
116 ((EditText) convertView).setText(body);
121 editText.setText(body);
H A DRequestFocus.java41 bottomRightButton.setText("I should have focus");
H A DHorizontalFocusSearch.java95 button.setText(label);
104 button.setText(label);
111 filler.setText("filler");
H A DListWithFooterViewAndNewLabels.java46 footerButton.setText("hi");
58 topButton.setText("click to add new item");
102 tv.setText(label);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DMockView.java36 setText(this.getClass().getSimpleName());
/frameworks/base/core/tests/coretests/src/android/widget/scroll/
H A DScrollViewButtonsAndLabels.java81 textView.setText("Text View " + i);
86 button.setText("Button " + (i + 1));
/frameworks/base/core/java/android/preference/
H A DEditTextPreference.java83 public void setText(String text) { method in class:EditTextPreference
110 editText.setText(getText());
142 setText(value);
154 setText(restoreValue ? getPersistedString(mText) : (String) defaultValue);
201 setText(myState.text);

Completed in 343 milliseconds

123456