Using "this" instead of getBaseContext() made no difference. listener onAnimationRepeat() is never called. Very simple animation:
<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false"> <translate android:interpolator="@android:anim/accelerate_decelerate_interpolator" android:fillAfter="false" android:fromXDelta="50%p" android:toXDelta="-50%p" android:duration="100" /> </set> On Thu, Dec 23, 2010 at 12:42 PM, Mark Murphy <[email protected]>wrote: > Try using: > > this > > instead of: > > getBaseContext() > > Also: > > -- Does your listener get called with onAnimationRepeat()? > > -- What is the animation? > > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

