how can I stop other animation?
I need run an animation , how can I run only one animation?(when I touch all imageview , I see animation run at all objects ( imageview )
I will only an animation run at last touch and stop other animation
Sub imageview_Click
For Each iv As ImageView In Activity.GetAllViewsRecursive
If iv = Sender Then
anim.InitializeAlpha("animAlpha" , 1 , 0.7 )
anim.Duration = 600
anim.RepeatCount = -1
anim.Start(iv)
Else
anim.Stop(iv)
End If
Next
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.