| Interface | Description |
|---|---|
| ViewDataAdapter<VIEW extends android.view.View,DATA> |
ViewDataAdapters are used to extract data from
Views. |
| Class | Description |
|---|---|
| CheckBoxBooleanAdapter |
Adapter returns a
Boolean value from a CheckBox. |
| RadioButtonBooleanAdapter |
Adapter that returns a
Boolean value from a RadioButton. |
| RadioGroupBooleanAdapter |
Adapter that returns a
Boolean value from a RadioGroup. |
| SpinnerIndexAdapter |
Adapter that returns the current selection index from a
Spinner using the
AdapterView.getSelectedItemPosition() method. |
| TextViewDoubleAdapter |
Adapter parses and returns a
Double from TextViews or
its subclasses like EditTexts. |
| TextViewFloatAdapter |
Adapter returns a
Float from TextViews or
its subclasses like EditTexts. |
| TextViewIntegerAdapter |
Adapter parses and returns an
Integer from TextViews or
its subclasses like EditTexts. |
| TextViewStringAdapter |
Adapter returns a
String from TextViews or
its subclasses, usually EditTexts. |