Searched refs:text (Results 176 - 200 of 473) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/text/method/
H A DTextKeyListener.java17 package android.text.method;
25 import android.text.*;
29 import android.text.InputType;
34 * This is the key listener for typing normal text. It delegates to
99 * specified position in the specified text, with the specified rules.
102 * @param cs the text in which an insertion is being made.
103 * @param off the offset into that text where the insertion is being made.
153 * just clears the text but not the input state.
155 * @param e the buffer whose text and state are to be cleared.
280 boolean text
[all...]
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
/frameworks/base/core/java/android/widget/
H A DArrayAdapter.java40 * of your objects to determine what text will be displayed for the item in the list.
329 TextView text;
340 text = (TextView) view;
343 text = (TextView) view.findViewById(mFieldId);
353 text.setText((CharSequence)item);
355 text.setText(item.toString());
H A DTextView.java46 import android.text.BoringLayout;
47 import android.text.ClipboardManager;
48 import android.text.DynamicLayout;
49 import android.text.Editable;
50 import android.text.GetChars;
51 import android.text.GraphicsOperations;
52 import android.text.InputFilter;
53 import android.text.InputType;
54 import android.text.Layout;
55 import android.text
2267 append(CharSequence text) argument
2276 append(CharSequence text, int start, int end) argument
2344 CharSequence text; field in class:TextView.SavedState
2572 setText(CharSequence text) argument
2585 setTextKeepState(CharSequence text) argument
2597 setText(CharSequence text, BufferType type) argument
2605 setText(CharSequence text, BufferType type, boolean notifyBefore, int oldlen) argument
2751 setText(char[] text, int start, int len) argument
2845 setTextKeepState(CharSequence text, BufferType type) argument
3459 chooseSize(PopupWindow pop, CharSequence text, TextView tv) argument
4778 setExtractedText(ExtractedText text) argument
4839 onCommitCompletion(CompletionInfo text) argument
6249 onTextChanged(CharSequence text, int start, int before, int after) argument
6295 sendBeforeTextChanged(CharSequence text, int start, int before, int after) argument
6310 sendOnTextChanged(CharSequence text, int start, int before, int after) argument
6325 sendAfterTextChanged(Editable text) argument
[all...]
H A DAlphabetIndexer.java65 private java.text.Collator mCollator;
96 mCollator = java.text.Collator.getInstance();
97 mCollator.setStrength(java.text.Collator.PRIMARY);
H A DAutoCompleteTextView.java24 import android.text.Editable;
25 import android.text.Selection;
26 import android.text.TextUtils;
27 import android.text.TextWatcher;
44 * <p>An editable text view that shows completion suggestions automatically
57 * <p>The following code snippet shows how to create a text view which suggests
227 // when the user touches the text field.
234 * <p>Sets the optional hint text that is displayed at the bottom of the
238 * @param hint the text to be displayed to the user
644 // was a click, the text vie
897 performFiltering(CharSequence text, int keyCode) argument
977 setText(CharSequence text, boolean filter) argument
994 replaceText(CharSequence text) argument
1624 isValid(CharSequence text) argument
[all...]
/frameworks/base/packages/TtsService/src/android/tts/
H A DTtsService.java53 * @hide Synthesizes speech from text. This is implemented as a service so that
72 public SpeechItem(String source, String text, ArrayList<String> params, int itemType) { argument
73 mText = text;
86 public SpeechItem(String source, String text, ArrayList<String> params, argument
88 mText = text;
435 * @param text
436 * The text that should be associated with the sound resource
442 private void addSpeech(String callingApp, String text, String packageName, int resId) { argument
443 mUtterances.put(text, new SoundResource(packageName, resId));
449 * @param text
455 addSpeech(String callingApp, String text, String filename) argument
498 speak(String callingApp, String text, int queueMode, ArrayList<String> params) argument
1172 synthesizeToFile(String callingApp, String text, ArrayList<String> params, String filename) argument
[all...]
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java51 if (command.equals("text")) {
67 * Convert the characters of string text into key event's and send to
70 * @param text is a string of characters you want to input to the device.
73 private void sendText(String text) { argument
75 StringBuffer buff = new StringBuffer(text);
140 System.err.println("usage: input [text|keyevent]");
141 System.err.println(" input text <string>");
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteStatement.cpp106 char const * text = (char const *)sqlite3_column_text(statement, 0); local
107 value = env->NewStringUTF(text);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DISms.aidl100 * @param text the body of the message to send
118 void sendText(in String destAddr, in String scAddr, in String text,
122 * Send a multi-part text based SMS.
/frameworks/base/tests/FixVibrateSetting/src/com/android/fixvibratesetting/
H A DFixVibrateSetting.java97 String text = getString(R.string.current_setting, ringer, notification);
98 mCurrentSetting.setText(text);
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DToastTest.java87 String text = "freq=" + readFile("/sys/class/leds/red/device/grpfreq")
89 mToast1 = Toast.makeText(ToastTest.this, text, Toast.LENGTH_SHORT);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java27 import android.text.TextUtils;
275 String text, float x, float y, Paint paint) {
276 native_drawText(thisCanvas.mNativeCanvas, text, 0, text.length(), x, y,
987 final char[] text, final int index, final int count,
994 // Paint.TextAlign indicates how the text is positioned relative to X.
999 float m = paintDelegate.measureText(text, index, count);
1015 int upTo = mainFont.mFont.canDisplayUpTo(text, i, lastIndex);
1019 graphics.drawChars(text, i, lastIndex - i, (int)x, (int)y);
1024 graphics.drawChars(text,
274 drawText(Canvas thisCanvas, String text, float x, float y, Paint paint) argument
986 native_drawText(int nativeCanvas, final char[] text, final int index, final int count, final float startX, final float startY, int paint) argument
1086 native_drawText(int nativeCanvas, String text, int start, int end, float x, float y, int paint) argument
1097 native_drawPosText(int nativeCanvas, char[] text, int index, int count, float[] pos, int paint) argument
1107 native_drawPosText(int nativeCanvas, String text, float[] pos, int paint) argument
1116 native_drawTextOnPath(int nativeCanvas, char[] text, int index, int count, int path, float hOffset, float vOffset, int paint) argument
1128 native_drawTextOnPath(int nativeCanvas, String text, int path, float hOffset, float vOffset, int paint) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DCommandParamsFactory.java270 textMsg.text = ValueParser.retrieveTextString(ctlv);
274 if (textMsg.text == null) {
330 textMsg.text = ValueParser.retrieveTextString(ctlv);
332 // load icons only when text exist.
333 if (textMsg.text != null) {
373 input.text = ValueParser.retrieveTextString(ctlv);
423 input.text = ValueParser.retrieveTextString(ctlv);
613 textMsg.text = ValueParser.retrieveAlphaId(ctlv);
702 confirmMsg.text = ValueParser.retrieveAlphaId(ctlv);
775 textMsg.text
[all...]
/frameworks/base/core/java/android/accounts/
H A DAccount.java21 import android.text.TextUtils;
/frameworks/base/core/java/android/app/
H A DProgressDialog.java24 import android.text.Spannable;
25 import android.text.SpannableString;
26 import android.text.style.StyleSpan;
34 import java.text.NumberFormat;
37 * <p>A dialog showing a progress indicator and an optional text message or view.
38 * Only a text message or a view can be used at the same time.</p>
116 /* Use a separate handler to update the text views as they
/frameworks/base/core/java/android/content/pm/
H A DPermissionGroupInfo.java21 import android.text.TextUtils;
H A DPermissionInfo.java21 import android.text.TextUtils;
/frameworks/base/core/java/android/provider/
H A DUserDictionary.java25 import android.text.TextUtils;
28 * A provider of user defined words for input methods to use for predictive text input.
/frameworks/base/core/java/android/text/
H A DInputFilter.java17 package android.text;
28 * with the new text from the range <code>start &hellip; end</code>
33 * as this is what happens when you delete text. Also beware that
74 * This filter will constrain edits not to make the length of the text
/frameworks/base/core/java/android/view/inputmethod/
H A DInputBinding.java22 import android.text.TextUtils;
/frameworks/base/core/java/android/webkit/
H A DCacheLoader.java20 import android.text.TextUtils;
/frameworks/base/core/java/com/android/internal/widget/
H A DDialogTitle.java21 import android.text.Layout;
28 * the text to the available space.
/frameworks/base/core/tests/coretests/src/android/webkit/
H A DWebkitTest.java20 import android.text.format.DateFormat;
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridScrollListener.java49 mText = (TextView) findViewById(R.id.text);

Completed in 1558 milliseconds

1234567891011>>