I\'ve been trawling through as many threads on this topic that I can find on the flicker that arises in Android 2.2 when dealing with AnimationListeners, but I can\'t quite
I faced the same error, but it only appeared in some views, although all had the same implementation. As it turned out, it happened for two reasons:
android:animateLayoutChanges="true"
in my root xml elementSo, two solutions, either remove the android:animateLayoutChanges="true"
tag (suggested since you're not using it), or use a wrapper Layout around the problematic view! So instead of:
...
, do
...