0

我想构建一个应用程序,我有一个通过(ImageView)显示的图像。和应用程序中的文本框。我想每秒钟将图像连续旋转大约 10 度。当图像旋转时,文本框应显示图像旋转的次数。我尝试旋转图像,但每次应用程序崩溃或不显示在屏幕上。

有人可以帮我写代码吗?

谢谢

4

1 回答 1

2

使用此代码创建动画旅馆 res/anim

<rotate
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:fromDegrees="0"
    android:toDegrees="360"
    android:pivotX="50%"
    android:pivotY="50%"
    android:repeatCount="infinite"
    android:duration="36000" />

在您的活动中:

Animation rotate = AnimationUtils.loadAnimation(this, R.anim.rotate);
findViewById(R.id.yourImageId).startAnimation(rotate);
rotate.reset();
rotate.start();
于 2012-06-21T08:31:26.630 回答