I have a ViewFlipper with 3 children.
I want to be able to display any of these children initially. So for example, maybe I want the ViewFlipper to load initially with the 2nd child and not the 1st.
EDIT: I know I can use the getChildAt(int index) method.
When a child in a ViewFlipper is shown, how can I get that child's index?
setDisplayedChild()
does not work good withsetInAnimation()
. If animation is added, ViewFlipper does not hide other items than which is shown, all views are put on top of each other – Homerhomere