Example usage for Java android.widget ViewFlipper fields, constructors, methods, implement or subclass
The text is from its open source code.
void | addView(View child) Adds a child view. |
int | getChildCount() Returns the number of children in the group. |
int | getDisplayedChild() Returns the index of the currently displayed child view. |
void | removeViewAt(int index) |
void | setAnimateFirstView(boolean animate) Indicates whether the current View should be animated the first time the ViewAnimator is displayed. |
void | setDisplayedChild(int whichChild) Sets which child view will be displayed. |
void | setInAnimation(Context context, @AnimRes int resourceID) Specifies the animation used to animate a View that enters the screen. |
void | setOutAnimation(Context context, @AnimRes int resourceID) Specifies the animation used to animate a View that exit the screen. |
void | setSystemUiVisibility(int visibility) Request that the visibility of the status bar or other screen/window decorations be changed. |
void | showNext() Manually shows the next child. |