This is a base class for some adapterviews to help in implementation of animations when switching from one view to another.
This class is abstract and derives from AdapterView<Adapter>.
public abstract class AdapterViewAnimator extends AdapterView<Adapter>...{}
This class has existed since API 11.
Furthermore this class implements android.widget.Adanceable
interface. Advanceable interface allows our AdapterViewAnimator to progress through its set of children .
AdapterViewAnimator has two direct children:
Subclass | Description |
---|---|
StackView | Shows views in a stack. |
AdapterViewFlipper | Class that animates between two or more views added onto it. |