I\'m using android coverflow, and it works fine on most of devices, but it seems that in Android 4.0.3 it does not put the center image back to the center once that you slide ba
I just added
child.invalidate()
before
final int childCenter = getCenterOfView(child); in getChildStaticTransformation(View child, Transformation t)
so it becomes
protected boolean getChildStaticTransformation(View child, Transformation t) {
child.invalidate();
final int childCenter = getCenterOfView(child);
final int childWidth = child.getWidth();
int rotationAngle = 0;