android旋转动画

问题:转完要一周后就会出现速度变慢,不均匀转动

解决:是因为没有设置匀速

LinearInterpolator lin = new LinearInterpolator();  
myAnimation_Rotate.setInterpolator(lin);  


你可能感兴趣的:(android旋转动画)