#java #android #animation #rotation
#java #Android #Анимация #вращение
Вопрос:
Я пытаюсь разработать приложение для Android. Однако я столкнулся с проблемой, и я хочу повернуть цветной квадратный фон на 360 градусов. Это будет эффект анимации. Непрерывный поворот. Возможно ли это?
Я попробовал view.animate().rotate() но, конечно, он поворачивает imageview. Я просто хочу повернуть фоновый рисунок в imageview.
Макет действия
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@ id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/border"
android:contentDescription="@string/todo"
android:cropToPadding="true"
android:padding="10dp"
android:scaleType="centerCrop"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent />
</androidx.constraintlayout.widget.ConstraintLayout>
Фон (@drawable / граница)
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="270"
android:endColor="@color/colorYellowGreen"
android:type="linear"
android:centerColor="@color/colorBlue"
android:startColor="@color/colorPink" />
<corners android:radius="5dp" />
Ответ №1:
Я использовал тег поворота в animation-list.
<?xml version="1.0" encoding="utf-8"?>
<animation-list
xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:duration="3000">
<rotate
android:fromDegrees="90"
android:toDegrees="180"
android:drawable="@drawable/border"
android:pivotY="50%"
android:pivotX="50%"/>
</item>
<item
android:duration="3000">
<rotate
android:fromDegrees="180"
android:toDegrees="270"
android:drawable="@drawable/border"
android:pivotY="50%"
android:pivotX="50%"/>
</item>
<item
android:duration="3000">
<rotate
android:fromDegrees="270"
android:toDegrees="360"
android:drawable="@drawable/border"
android:pivotY="50%"
android:pivotX="50%"/>
</item>
<item
android:duration="3000">
<rotate
android:fromDegrees="0"
android:toDegrees="90"
android:drawable="@drawable/border"
android:pivotY="50%"
android:pivotX="50%"/>
</item>
</animation-list>
Приведенный выше код может быть необязательным, но это самая важная часть для непрерывного вращения
AnimationDrawable animationDrawable =
(AnimationDrawable) mQRImage.getBackground();
animationDrawable.setExitFadeDuration(3000);
animationDrawable.start();