I\'ve a ScrollView in the PopupWindow. I\'m animating ScrollView contents using TranslateAnimation.
When animation starts, the onAnimationStart listener is called bu
Do it like belows
for example view.clearAnimation();
new Hander().post(
run() {
final TranslateAnimation ani = new TranslateAnimation(0, 0, 0, 0);
ani.setAnimationListener(mListener);
}
);
private Animation.AnimationListener mListener = new Animation.AnimationListener() {
}