Questions tagged [viewflipper]

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

  1. In XML layout file
  2. 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

646 questions
-3
votes
2 answers

Adding multiple views to a view

I want to add a view comprising of 4 buttons and a textview to a linear layout and set that newly made view to a viewflipper...Client's requirement is that i need to create the layout the programmatically and not using an xml file
HelpNeeded
  • 21
  • 1
  • 3
1 2 3
43
44