(ImageView) を介して画像を表示するアプリケーションを構築したいと考えています。アプリケーションのテキストボックス。1秒ごとに約10度連続して画像を回転させたい。画像が回転すると、テキストボックスに画像が回転した回数が表示されます。画像を回転させてみましたが、毎回アプリケーションがクラッシュしたり、画面に表示されません。
誰かがコードplzで私を助けることができますか??
ありがとう
このコードでアニメーション イン 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();