Searched defs:setText (Results 1 - 21 of 21) sorted by relevance

/frameworks/base/core/java/android/text/
H A DClipboardManager.java35 public abstract void setText(CharSequence text); method in class:ClipboardManager
/frameworks/base/core/java/android/widget/
H A DTextSwitcher.java32 * {@link #setText(CharSequence)} is called, TextSwitcher animates the current text
78 public void setText(CharSequence text) { method in class:TextSwitcher
80 t.setText(text);
91 ((TextView)getCurrentView()).setText(text);
H A DEditText.java79 public void setText(CharSequence text, BufferType type) { method in class:EditText
80 super.setText(text, BufferType.EDITABLE);
H A DToast.java244 tv.setText(text);
272 public void setText(int resId) { method in class:Toast
273 setText(mContext.getText(resId));
280 public void setText(CharSequence s) { method in class:Toast
288 tv.setText(s);
H A DAutoCompleteTextView.java231 hintView.setText(mHintText);
235 mHintView.setText(hint);
920 * Like {@link #setText(CharSequence)}, except that it can disable filtering.
925 public void setText(CharSequence text, boolean filter) { method in class:AutoCompleteTextView
927 setText(text);
930 setText(text);
945 setText(text);
1177 setText(mValidator.fixText(text));
H A DTextView.java1084 setText(text, bufferType);
1272 * Return the text the TextView is displaying. If setText() was called with
1395 setText(mText);
1426 setText(mText);
1470 // Avoid the setText() below if the transformation is
1490 setText(mText);
2545 * set to nonzero and links are detected in {@link #setText}.
2558 * set to nonzero and links are detected in {@link #setText}.
3148 setText(mText, BufferType.EDITABLE);
3241 * Calling setText() strip
3399 public final void setText(CharSequence text) { method in class:TextView
3424 public void setText(CharSequence text, BufferType type) { method in class:TextView
3432 private void setText(CharSequence text, BufferType type, method in class:TextView
3588 public final void setText(char[] text, int start, int len) { method in class:TextView
3639 public final void setText(int resid) { method in class:TextView
3643 public final void setText(int resid, BufferType type) { method in class:TextView
[all...]
/frameworks/base/core/java/android/content/
H A DClipboardManager.java203 public void setText(CharSequence text) { method in class:ClipboardManager
/frameworks/base/core/tests/coretests/src/android/widget/
H A DLabelView.java56 setText(s.toString());
90 public void setText(String text) { method in class:LabelView
/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);
/frameworks/base/core/java/com/android/internal/app/
H A DHeavyWeightSwitcherActivity.java94 void setText(int id, CharSequence text) { method in class:HeavyWeightSwitcherActivity
95 ((TextView)findViewById(id)).setText(text);
119 setText(actionId, getString(actionStr, appName));
120 setText(descriptionId, getText(descriptionStr));
H A DActionBarImpl.java1052 public Tab setText(CharSequence text) { method in class:ActionBarImpl.TabImpl
1061 public Tab setText(int resId) { method in class:ActionBarImpl.TabImpl
1062 return setText(mContext.getResources().getText(resId));
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DCustomBar.java204 protected TextView setText(int index, String stringReference) { method in class:CustomBar
208 setText(textView, stringReference);
219 setText(textView, stringReference);
226 private void setText(TextView textView, String stringReference) { method in class:CustomBar
229 textView.setText(value.getValue());
231 textView.setText(stringReference);
/frameworks/base/core/java/android/webkit/
H A DAutoCompletePopup.java100 public void setText(CharSequence text) { method in class:AutoCompletePopup
198 setText(mFilter.convertResultToString(selectedItem));
H A DFindActionModeCallback.java56 setText("");
72 void setText(String text) { method in class:FindActionModeCallback
73 mEditText.setText(text);
166 mMatches.setText(com.android.internal.R.string.no_matches);
168 mMatches.setText(mResources.getQuantityString(
202 mMatches.setText("0");
/frameworks/base/core/tests/coretests/src/android/text/
H A DStaticLayoutTest.java102 .setText("This is a longer test")
122 .setText("This is a longer test")
150 .setText("This is a longer test")
170 .setText("This is a longer test")
192 .setText("This is a longer test")
244 LayoutBuilder setText(String text) { method in class:StaticLayoutTest.LayoutBuilder
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiObject.java465 public boolean setText(String text) throws UiObjectNotFoundException { method in class:UiObject
/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatIcs.java212 public static void setText(Object info, CharSequence text) { method in class:AccessibilityNodeInfoCompatIcs
213 ((AccessibilityNodeInfo) info).setText(text);
/frameworks/base/core/java/android/app/
H A DActionBar.java770 public abstract Tab setText(CharSequence text); method in class:ActionBar.Tab
779 public abstract Tab setText(int resId); method in class:ActionBar.Tab
783 * {@link #setText(CharSequence)} and {@link #setIcon(Drawable)}.
792 * {@link #setText(CharSequence)} and {@link #setIcon(Drawable)}.
/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java430 public IntentBuilder setText(CharSequence text) { method in class:ShareCompat.IntentBuilder
444 * @see #setText(CharSequence)
450 setText(Html.fromHtml(htmlText));
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java91 public void setText(Object info, CharSequence text); method in interface:AccessibilityNodeInfoCompat.AccessibilityNodeInfoImpl
384 public void setText(Object info, CharSequence text) { method in class:AccessibilityNodeInfoCompat.AccessibilityNodeInfoStubImpl
626 public void setText(Object info, CharSequence text) { method in class:AccessibilityNodeInfoCompat.AccessibilityNodeInfoIcsImpl
627 AccessibilityNodeInfoCompatIcs.setText(info, text);
1688 public void setText(CharSequence text) { method in class:AccessibilityNodeInfoCompat
1689 IMPL.setText(mInfo, text);
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java1206 public void setText(CharSequence text) { method in class:AccessibilityNodeInfo

Completed in 1744 milliseconds