I\'ve a ScrollView in the PopupWindow. I\'m animating ScrollView contents using TranslateAnimation.
When animation starts, the onAnimationStart listener is called bu
Make sure that you are USING view.startAnimation(Animation) AND NOT view.setAnimation(Animation). This simple confusion may be a problem.
view.startAnimation(Animation)
view.setAnimation(Animation)