Uses of Interface
a_vcard.android.text.InputFilter

Packages that use InputFilter
a_vcard.android.text   
 

Uses of InputFilter in a_vcard.android.text
 

Classes in a_vcard.android.text that implement InputFilter
static class InputFilter.LengthFilter
          This filter will constrain edits not to make the length of the text greater than the specified length.
 

Methods in a_vcard.android.text that return InputFilter
 InputFilter[] Editable.getFilters()
          Returns the array of input filters that are currently applied to changes to this Editable.
 InputFilter[] SpannableStringBuilder.getFilters()
           
 

Methods in a_vcard.android.text with parameters of type InputFilter
 void Editable.setFilters(InputFilter[] filters)
          Sets the series of filters that will be called in succession whenever the text of this Editable is changed, each of which has the opportunity to limit or transform the text that is being inserted.
 void SpannableStringBuilder.setFilters(InputFilter[] filters)