Uses of Interface
a_vcard.android.text.Spannable

Packages that use Spannable
a_vcard.android.text   
 

Uses of Spannable in a_vcard.android.text
 

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

Methods in a_vcard.android.text with parameters of type Spannable
static void Selection.extendSelection(Spannable text, int index)
          Move the selection edge to offset index.
 void SpanWatcher.onSpanAdded(Spannable text, java.lang.Object what, int start, int end)
          This method is called to notify you that the specified object has been attached to the specified range of the text.
 void SpanWatcher.onSpanChanged(Spannable text, java.lang.Object what, int ostart, int oend, int nstart, int nend)
          This method is called to notify you that the specified object has been relocated from the range ostart…oend to the new range nstart…nend of the text.
 void SpanWatcher.onSpanRemoved(Spannable text, java.lang.Object what, int start, int end)
          This method is called to notify you that the specified object has been detached from the specified range of the text.
static void Selection.removeSelection(Spannable text)
          Remove the selection or cursor, if any, from the text.
static void Selection.selectAll(Spannable text)
          Select the entire text.
static void Selection.setSelection(Spannable text, int index)
          Move the cursor to offset index.
static void Selection.setSelection(Spannable text, int start, int stop)
          Set the selection anchor to start and the selection edge to stop.