I am using a Translate animation (borrowed from here) as follows:
TranslateAnimation a = new TranslateAnimation(
Animation.ABSOLUTE,200, Animation.ABSOLUTE,200,
Animation.ABSOLUTE,200, Animation.ABSOLUTE,200);
a.setDuration(1000);
a.setFillAfter(true);
animationSet.addAnimation(a);
myView.startAnimation(a);
Is there any callback that can give me the current position of myView? I would like to perform an action depending on myView's position while the animation is in progress.