ViewFlipper is a FrameLayout Container that will animate between two or more views that have been added to it
ViewFlipper is an extended class of Android's ViewAnimator class which is useful to animate between views added to it.
Only one child of ViewFlipper is shown at a time. If request has been made to the ViewFlipper it can automatically flip views at a regular interval.
Child views can be added to ViewFlipper via following ways
- In XML layout file
- Programmatically through addView(View view) method of ViewFlipper Object
ViewFlipper provides methods like setInAnimation and setOutAnimation by which flipping between two views can have different custom animation effects.
For ViewFipper Class details please visit ViewFlipper at android.com