Searched defs:text (Results 151 - 175 of 441) sorted by relevance

1234567891011>>

/frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/util/
H A DGlifPreferenceDelegate.java77 public void setHeaderText(CharSequence text) { argument
82 ((TextView) titleView).setText(text);
/frameworks/support/compat/kitkat/android/support/v4/view/accessibility/
H A DAccessibilityNodeProviderCompatKitKat.java32 public List<Object> findAccessibilityNodeInfosByText(String text, argument
48 String text, int virtualViewId) {
51 bridge.findAccessibilityNodeInfosByText(text, virtualViewId);
/frameworks/av/media/libstagefright/id3/
H A Dtestid3.cpp88 String8 text; local
89 it.getString(&text);
91 printf(" found text frame '%s': %s\n", id.string(), text.string());
/frameworks/base/core/java/android/accounts/
H A DChooseAccountTypeActivity.java168 TextView text; field in class:ChooseAccountTypeActivity.ViewHolder
190 holder.text = (TextView) convertView.findViewById(R.id.account_row_text);
197 holder.text.setText(mInfos.get(position).name);
/frameworks/base/core/java/android/content/
H A DClipboardManager.java29 * Interface to the clipboard service, for placing and retrieving text in
51 public class ClipboardManager extends android.text.ClipboardManager {
205 * creates a ClippedItem holding the given text and sets it as the
208 public void setText(CharSequence text) { argument
209 setPrimaryClip(ClipData.newPlainText(null, text));
/frameworks/base/core/java/android/text/
H A DGraphicsOperations.java17 package android.text;
H A DLoginFilter.java17 package android.text;
20 * Abstract class for filtering login-related text (user names and passwords)
43 * with the new text from the range <code>start &hellip; end</code>
48 * as this is what happens when you delete text.
H A DPackedObjectVector.java17 package android.text;
/frameworks/base/core/java/android/text/format/
H A DFormatter.java17 package android.text.format;
23 import android.text.BidiFormatter;
24 import android.text.TextUtils;
/frameworks/base/core/java/android/text/method/
H A DDigitsKeyListener.java17 package android.text.method;
19 import android.text.InputType;
20 import android.text.Spanned;
21 import android.text.SpannableStringBuilder;
26 * For digits-only text entry
157 * Find out if the existing text has a sign or decimal point characters.
H A DNumberKeyListener.java17 package android.text.method;
21 import android.text.Editable;
22 import android.text.InputFilter;
23 import android.text.Selection;
24 import android.text.Spannable;
25 import android.text.SpannableStringBuilder;
26 import android.text.Spanned;
29 * For numeric text entry
H A DTouch.java17 package android.text.method;
19 import android.text.Layout;
20 import android.text.Layout.Alignment;
21 import android.text.NoCopySpan;
22 import android.text.Spannable;
34 * the text that will be visible after scrolling to the specified
181 * @param widget The text view.
182 * @param buffer The text buffer.
190 * @param widget The text view.
191 * @param buffer The text buffe
[all...]
/frameworks/base/core/java/android/text/style/
H A DAbsoluteSizeSpan.java17 package android.text.style;
20 import android.text.ParcelableSpan;
21 import android.text.TextPaint;
22 import android.text.TextUtils;
30 * Set the text size to <code>size</code> physical pixels.
37 * Set the text size to <code>size</code> physical pixels,
H A DEasyEditSpan.java17 package android.text.style;
21 import android.text.ParcelableSpan;
22 import android.text.TextUtils;
26 * Provides an easy way to edit a portion of text.
28 * The {@link TextView} uses this span to allow the user to delete a chuck of text in one click.
30 * {@link TextView} removes the span when the user deletes the whole text or modifies it.
32 * This span can be also used to receive notification when the user deletes or modifies the text;
37 * The extra key field in the pending intent that describes how the text changed.
44 "android.text.style.EXTRA_TEXT_CHANGED_TYPE";
47 * The value of {@link #EXTRA_TEXT_CHANGED_TYPE} when the text wrappe
[all...]
H A DLocaleSpan.java17 package android.text.style;
26 import android.text.ParcelableSpan;
27 import android.text.TextPaint;
28 import android.text.TextUtils;
33 * Changes the {@link Locale} of the text to which the span is attached.
48 * @param locale The {@link Locale} of the text to which the span is attached.
59 * @param locales The {@link LocaleList} of the text to which the span is attached.
/frameworks/base/core/java/android/text/util/
H A DRfc822Token.java17 package android.text.util;
/frameworks/base/core/java/android/view/inputmethod/
H A DCompletionInfo.java21 import android.text.TextUtils;
24 * Information about a single text completion that an editor has reported to
58 * Create a simple completion with just text, no label.
63 * @param text The text that should be inserted into the editor when
66 public CompletionInfo(long id, int index, CharSequence text) { argument
69 mText = text;
74 * Create a full completion with both text and label. The text is
82 * @param text Th
87 CompletionInfo(long id, int index, CharSequence text, CharSequence label) argument
[all...]
/frameworks/base/core/java/android/view/textservice/
H A DTextInfo.java21 import android.text.ParcelableSpan;
22 import android.text.SpannableStringBuilder;
23 import android.text.TextUtils;
24 import android.text.style.SpellCheckSpan;
39 * @param text the text which will be input to TextService
41 public TextInfo(String text) { argument
42 this(text, 0, getStringLengthOrZero(text), DEFAULT_COOKIE, DEFAULT_SEQUENCE_NUMBER);
47 * @param text th
51 TextInfo(String text, int cookie, int sequenceNumber) argument
55 getStringLengthOrZero(final String text) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAccessibilityIterators.java20 import android.text.Layout;
21 import android.text.Spannable;
25 * This class contains the implementation of text segment iterators
45 public void initialize(Spannable text, Layout layout) { argument
46 mText = text.toString();
186 // If we're at the end of text, we're at the end of the current line rather than the
H A DEditText.java21 import android.text.Editable;
22 import android.text.Selection;
23 import android.text.Spannable;
24 import android.text.TextUtils;
25 import android.text.method.ArrowKeyMovementMethod;
26 import android.text.method.MovementMethod;
41 * <p>See the <a href="{@docRoot}guide/topics/ui/controls/text.html">Text Fields</a>
88 public void setText(CharSequence text, BufferType type) { argument
89 super.setText(text, BufferType.EDITABLE);
121 * Causes words in the text tha
[all...]
H A DMultiAutoCompleteTextView.java20 import android.text.Editable;
21 import android.text.SpannableString;
22 import android.text.Spanned;
23 import android.text.TextUtils;
24 import android.text.method.QwertyKeyListener;
28 * An editable text view, extending {@link AutoCompleteTextView}, that
29 * can show completion suggestions for the substring of the text where
35 * <p>The following code snippet shows how to create a text view which suggests
81 * range of the text where the user is typing.
94 protected void performFiltering(CharSequence text, in argument
171 performFiltering(CharSequence text, int start, int end, int keyCode) argument
190 replaceText(CharSequence text) argument
213 findTokenStart(CharSequence text, int cursor) argument
219 findTokenEnd(CharSequence text, int cursor) argument
225 terminateToken(CharSequence text) argument
233 findTokenStart(CharSequence text, int cursor) argument
246 findTokenEnd(CharSequence text, int cursor) argument
261 terminateToken(CharSequence text) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DAccountItemView.java21 import android.text.TextUtils;
94 private void setText(TextView view, String text) { argument
95 if (TextUtils.isEmpty(text)) {
98 view.setText(text);
/frameworks/base/core/tests/coretests/src/android/graphics/
H A DPaintTest.java51 public HintingTestCase(String text, float textSize, float[] widthWithoutHinting, argument
53 mText = text;
/frameworks/base/core/tests/coretests/src/android/widget/
H A DEditorCursorTest.java84 // Asserts that when an EditText has LTR text, and cursor is at the end (right),
93 // Asserts that when an EditText has LTR text, and cursor is at the beginning,
102 // Asserts that when an EditText has RTL text, and cursor is at the end,
111 // Asserts that when an EditText has RTL text, and cursor is at the beginning,
195 private void setEditTextProperties(final String text, final String hint, argument
201 if (text != null) mEditText.setText(text);
229 private void setEditTextText(final String text, final Integer selection) { argument
230 setEditTextProperties(text, null, null, selection);
H A DLabelView.java26 * is used to draw simple text views. Note that it does not handle
27 * styled text or right-to-left writing systems.
87 * Sets the text to display in this label
88 * @param text The text to display. This will be drawn as one line.
90 public void setText(String text) { argument
91 mText = text;
97 * Sets the text size for this label
107 * Sets the text color for this label
108 * @param color ARGB value for the text
[all...]

Completed in 456 milliseconds

1234567891011>>