Uses of Interface
a_vcard.android.text.Editable

Packages that use Editable
a_vcard.android.telephony   
a_vcard.android.text   
 

Uses of Editable in a_vcard.android.telephony
 

Methods in a_vcard.android.telephony with parameters of type Editable
static void PhoneNumberUtils.formatJapaneseNumber(Editable text)
          Formats a phone number in-place using the Japanese formatting rules.
static void PhoneNumberUtils.formatNanpNumber(Editable text)
          Formats a phone number in-place using the NANP formatting rules.
static void PhoneNumberUtils.formatNumber(Editable text, int defaultFormattingType)
          Formats a phone number in-place.
 

Uses of Editable in a_vcard.android.text
 

Classes in a_vcard.android.text that implement Editable
 class SpannableStringBuilder
          This is the class for text whose content and markup can both be changed.
 

Methods in a_vcard.android.text that return Editable
 Editable Editable.append(char text)
          Convenience for append(String.valueOf(text)).
 Editable Editable.append(java.lang.CharSequence text)
          Convenience for replace(length(), length(), text, 0, text.length())
 Editable Editable.append(java.lang.CharSequence text, int start, int end)
          Convenience for replace(length(), length(), text, start, end)
 Editable Editable.delete(int st, int en)
          Convenience for replace(st, en, "", 0, 0)
 Editable Editable.insert(int where, java.lang.CharSequence text)
          Convenience for replace(where, where, text, 0, text.length());
 Editable Editable.insert(int where, java.lang.CharSequence text, int start, int end)
          Convenience for replace(where, where, text, start, end)
 Editable Editable.Factory.newEditable(java.lang.CharSequence source)
          Returns a new SpannedStringBuilder from the specified CharSequence.
 Editable Editable.replace(int st, int en, java.lang.CharSequence text)
          Convenience for replace(st, en, text, 0, text.length())
 Editable Editable.replace(int st, int en, java.lang.CharSequence source, int start, int end)
          Replaces the specified range (st…en) of text in this Editable with a copy of the slice start…end from source.
 

Methods in a_vcard.android.text with parameters of type Editable
 void TextWatcher.afterTextChanged(Editable s)
          This method is called to notify you that, somewhere within s, the text has been changed.