Android旋转更流畅

时间:2013-12-30 03:10:47

标签: android rotation apk compass-geolocation

我正在为Android制作一个简单的指南针应用程序。 轮换是可以的,但它是滞后的。

我在方法onSensorChanged()中有以下代码:

RotateAnimation ra = new RotateAnimation(this.currentDegree,
                    -degree, Animation.RELATIVE_TO_SELF, 0.5f,
                    Animation.RELATIVE_TO_SELF, 0.5f);

            ra.setDuration(0);
            ra.setFillAfter(true);
            this.image.startAnimation(ra);

如何让它更流畅?

谢谢你,cumps!

0 个答案:

没有答案