[android-developers] Re: ViewFlipper onFlipListener

2008-11-23 Thread Ngewi
I think that is my best bet. Thanks loty On Nov 21, 5:02 pm, loty <[EMAIL PROTECTED]> wrote: > Ok, I guess I misunderstood. Well you can use Timer object to initiate > your flips instead of doing setFlipInterval and startFlipping. This > way you can do whatever you want before and after each flip

[android-developers] Re: ViewFlipper onFlipListener

2008-11-21 Thread loty
Ok, I guess I misunderstood. Well you can use Timer object to initiate your flips instead of doing setFlipInterval and startFlipping. This way you can do whatever you want before and after each flip. On Nov 21, 7:40 am, Ngewi <[EMAIL PROTECTED]> wrote: > Yes, ViewFlipper can flip on its own. When

[android-developers] Re: ViewFlipper onFlipListener

2008-11-21 Thread Ngewi
Yes, ViewFlipper can flip on its own. When you call setFlipInterval (int timeInMs) and then call startFlipping() the flipper will switch the views every timeInMs millisecs. I can handle the flips that I trigger manually, but I want to also handle them when they are automatic. There is the possibi

[android-developers] Re: ViewFlipper onFlipListener

2008-11-20 Thread loty
I don't understand it - you tell ViewFlipper to flip views, it doesn't flip anything on it's own. So why can't you keep track of your views in the event handler that initiates your flips? On Nov 20, 4:38 am, Ngewi <[EMAIL PROTECTED]> wrote: > Hi everyone, > I am using the ViewFlipper class with a