I use below code
When my view zoom in,i need to return to first state
But Animation library dont have persistent properties
How can i use it?
B4X:
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?