I'm trying to use the Animation class to move a view on the screen. It works, I see the view move to the desired position but after the animation has finished, the view returns to its original position.
B4X:
Dim ani As Animation
ani.InitializeTranslate("", 0, 0, 400dip, 0)
ani.Duration = 200
ani.Start(myView)