I have a ViewFlipper set to auto-flip every 5 seconds. Leaving out some of the details, it looks like this and works fine:
ViewFlipper flipper = (ViewFlipper) findViewById(R.id.myflipperid);
flipper.setFlipInterval(5000);
flipper.setInAnimation(inFromRightAnimation());
flipper.setOutAnimation(outToLeftAnimation());
flipper.startFlipping();
However, I have a case where I want the auto-flipping to stop at the last view, rather than looping around to start over again. It doesn't seem that ViewFlipper or any of the classes it inherits from have a looping control method.
How can I get ViewFlipper to stop looping through its child views when it hits the last one?
Note: the answer given here doesn't apply to my case, as I need to catch the ViewFlipper at the end of its list, i.e., without depending on user input. Thanks.