Android ViewFlipper back to first view

5.5k Views Asked by At

My viewFlipper contains 15 LinearLayout. After it reaches, I have a button "Back to menu".

I've used

showNext()

all the way to the 15th LinearLayout. And now I want it to go back to 1st LinearLayout. Anyone have any idea? How to bring it back to 1st Linearlayout?

Thanks.

2

There are 2 best solutions below

1
On BEST ANSWER

Call showNext(). Or, call setDisplayedChild(0).

0
On

I used this code.

private ViewFlipper vf;
private float lastX;


case MotionEvent.ACTION_UP: {
float currentX = touchevent.getX();
    if (lastX < currentX) {
        vf.setInAnimation(this, R.anim.in_from_left);
        vf.setOutAnimation(this, R.anim.out_to_right);
        vf.showNext();
        }
if (lastX > currentX) {
            vf.setInAnimation(this, R.anim.in_from_right);
            vf.setOutAnimation(this, R.anim.out_to_left);
            vf.showPrevious();
            }
break;
}