Dim anim As Animation
Dim xmll As XmlLayoutBuilder
anim = xmll.LoadAnimation("zoom_in","EndBounce")
anim.Duration = 500
anim.PersistAfter = False
anim.Start(View1)
When my view zoom in,i need to return to first state
But Animation library dont have persistent properties
How can i use it?
Have you tried to set persistAfter to true?
You need to animate view layout, for example with a SetLayoutAnimated. Animation doesn't edit view position and dimension
Have you tried to set persistAfter to true?
You need to animate view layout, for example with a SetLayoutAnimated. Animation doesn't edit view position and dimension
I read a persistAfter property. By the way, as I wrote, animation doesn't edit the view layout property. You need to do it by using method like SetLayoutAnimated, o implements a custom method with timer or sleep function. See animation border code snippet for a good example
I read a persistAfter property. By the way, as I wrote, animation doesn't edit the view layout property. You need to do it by using method like SetLayoutAnimated, o implements a custom method with timer or sleep function. See animation border code snippet for a good example