I want to run a code after a View
object is totally INVISIBLE.
If I use alpha animation, the
View
seems to not totally disappear onAnimationEnd
. I even tried to create a new class (extendsView
) and override method onAnimatonEnd, but it didn't help.(See this link: android animation is not finished in onAnimationEnd)If I just call
View.setVisibility(View.INVISIBLE)
, I can see that the View object is not totally INVISIBLE when the code starts to run.
Please help me!