I have 3 ImageButtons which are animated when Filling to left, like this:
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY
Ana, I think you have already read my answers here
Android TranslateAnimation resets after animation
android animation is not finished in onAnimationEnd
I had also replied to your comment, basically in stead of doing the functionality inside the mAnimation.setAnimationListener method, you need to create custom ImageButtons and put the functionality there
public Class myImageButton extends ImageButton {
@Override
protected void onAnimationEnd() {
super.onAnimationEnd();
//Functionality here
}