Searched refs:text (Results 226 - 250 of 668) sorted by relevance

1234567891011>>

/packages/apps/Email/src/com/android/email/activity/
H A DMessageCompose.java37 import android.text.InputFilter;
38 import android.text.SpannableStringBuilder;
39 import android.text.Spanned;
40 import android.text.TextUtils;
41 import android.text.TextWatcher;
42 import android.text.util.Rfc822Tokenizer;
227 public void afterTextChanged(android.text.Editable s) { }
535 * Quoted text,
603 * @return whether or not all text fields are empty (i.e. the entire compose message is empty)
888 // The quoted text mus
1483 onQuickResponseSelected(CharSequence text) argument
1984 setInitialComposeText(CharSequence text, String signature) argument
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DEvent.java31 import android.text.TextUtils;
32 import android.text.format.DateUtils;
585 String text = title.toString();
592 if (!text.endsWith(locationString)) {
593 text += ", " + locationString;
596 return text;
/packages/apps/Settings/src/com/android/settings/
H A DChooseLockPassword.java32 import android.text.Editable;
33 import android.text.InputType;
34 import android.text.Selection;
35 import android.text.Spannable;
36 import android.text.TextUtils;
37 import android.text.TextWatcher;
464 // Changing the text while error displayed resets to NeedToConfirm state
H A DProxySelector.java34 import android.text.Selection;
35 import android.text.Spannable;
36 import android.text.TextUtils;
259 // disable editing of the text boxes if the user chooses to use the
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DUserDictionaryToolsList.java26 import android.text.TextUtils;
721 TextView text = (TextView)mTableLayout.findViewById(i + 1);
722 text.setText(wnnWordGet.stroke);
723 text = (TextView)mTableLayout.findViewById(i + 1 + MAX_WORD_COUNT);
724 text.setText(wnnWordGet.candidate);
725 ((View)text.getParent()).setVisibility(View.VISIBLE);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
H A DAddress.java25 import android.text.TextUtils;
26 import android.text.util.Rfc822Token;
27 import android.text.util.Rfc822Tokenizer;
/packages/apps/Phone/src/com/android/phone/
H A DEditPhoneNumberPreference.java28 import android.text.TextUtils;
29 import android.text.method.ArrowKeyMovementMethod;
30 import android.text.method.DialerKeyListener;
364 // irrelevant text.
418 * text field.
H A DCdmaOptions.java28 import android.text.TextUtils;
/packages/apps/VideoEditor/src/com/android/videoeditor/
H A DProjectPickerAdapter.java30 import android.text.format.DateUtils;
31 import android.text.TextPaint;
32 import android.text.TextUtils;
180 // duration text.
/packages/apps/Browser/src/com/android/browser/
H A DAccountsChangedReceiver.java29 import android.text.TextUtils;
/packages/apps/Browser/src/com/android/browser/preferences/
H A DAccessibilityPreferencesFragment.java29 import java.text.NumberFormat;
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
H A DSelectSyncedCalendarsMultiAccountAdapter.java34 import android.text.TextUtils;
258 private static void setText(View view, int id, String text) { argument
259 if (TextUtils.isEmpty(text)) {
263 textView.setText(text);
/packages/apps/Calendar/src/com/android/calendar/widget/
H A DCalendarAppWidgetModel.java24 import android.text.TextUtils;
25 import android.text.format.DateFormat;
26 import android.text.format.DateUtils;
27 import android.text.format.Time;
/packages/apps/Camera/src/com/android/camera/ui/
H A DBasicSettingPopup.java67 map.put("text", entries[i].toString());
73 new String[] {"text", "image"},
74 new int[] {R.id.text, R.id.image});
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DNonPhoneActivity.java33 import android.text.TextUtils;
/packages/apps/Contacts/src/com/android/contacts/calllog/
H A DCallLogListItemHelper.java25 import android.text.TextUtils;
57 * @param isHighlighted whether to use the highlight text for the call
/packages/apps/Contacts/src/com/android/contacts/datepicker/
H A DDatePicker.java29 import android.text.format.DateFormat;
42 import java.text.DateFormatSymbols;
43 import java.text.SimpleDateFormat;
209 java.text.DateFormat format;
/packages/apps/Contacts/src/com/android/contacts/model/
H A DDataKind.java28 import java.text.SimpleDateFormat;
/packages/apps/Contacts/src/com/android/contacts/util/
H A DAccountsListAdapter.java25 import android.text.TextUtils.TruncateAt;
/packages/apps/Contacts/src/com/android/contacts/voicemail/
H A DVoicemailPlaybackFragment.java416 * Controls a TextView with dynamically changing text.
421 * former is used to set the text on the text view immediately, and is used in our case for
444 public void setPermanentText(String text) { argument
445 mPermanentTextView.setText(text);
448 public void setTemporaryText(String text, long duration, TimeUnit units) { argument
450 mTemporaryTextView.setText(text);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DIntentUtilities.java24 import android.text.TextUtils;
/packages/apps/Exchange/src/com/android/exchange/utility/
H A DSimpleIcsWriter.java20 import android.text.TextUtils;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DGridDrawer.java24 import android.text.Layout;
/packages/apps/Mms/src/com/android/mms/model/
H A DSmilHelper.java48 import android.text.TextUtils;
62 public static final String ELEMENT_TAG_TEXT = "text";
321 TextModel text = (TextModel) media;
322 if (TextUtils.isEmpty(text.getText())) {
324 Log.v(TAG, "Empty text part ignored: " + text.getSrc());
/packages/apps/Music/src/com/android/music/
H A DVerticalTextSpinner.java25 import android.text.TextPaint;
280 /* The bounds of the top area where the text should be light */
323 /* The bounds of the bottom area where the text should be light */
330 * Draw the 3rd, 4th and 5th in white text, clip it so it only draws
411 * Called every time the text items or current position
470 private void drawText(Canvas canvas, String text, int y, TextPaint paint) { argument
471 int width = (int) paint.measureText(text);
473 canvas.drawText(text, x, y, paint);

Completed in 483 milliseconds

1234567891011>>