I have a rotation animation which I am applying it to a view, here is the code:
RotateAnimation shake = new RotateAnimation(-3, 3, 10, 10);
shake.setRepeatCount(Animation.INFINITE);
shake.setRepeatMode(Animation.REVERSE);
shake.setDuration(SHAKE_ANIMATION_DURATION);
But while playing animation, my view's margins get pixelated:
Is there a way to fix this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…