StepView icon indicating copy to clipboard operation
StepView copied to clipboard

Animation not working with stepView.go()

Open ranaprathap2 opened this issue 6 years ago • 3 comments

stepView.state.animationDuration(android.R.integer.config_longAnimTime).animationType(StepView.ANIMATION_ALL) stepView.go(1,true)

The animation is enabled with duration, still animation is not working, Still the step jumps directly without any animations ...

ranaprathap2 avatar Jun 09 '19 05:06 ranaprathap2

In the description they said that the animation won't run unless the difference between the current step and the next step is 1. I spent a lot of time until i figured it out. I Hope it solves your problem.

hassanmhd avatar Aug 01 '19 06:08 hassanmhd

From the beginning this case with difference between steps greater than 1 was not considered intentionally. It just looks too complicated to calculate and run properly across all combination of state changes.

shuhart avatar Aug 08 '19 13:08 shuhart

stepView.go(stepView.getCurrentStep()+1,true);

emrekilincarslan avatar Oct 18 '19 19:10 emrekilincarslan