Для моего проекта приложения я запланировал долгожданное мероприятие, которое позволит пользователю выбрать группу стран.
Для этого у меня есть две кнопки: первая позволит CardView, содержащему 4 TextView, поворачиваться на 90 °, пока TexView группы стран не станет читабельным (остальные Textviews будут ориентированы по-разному).
Приведенный ниже код работает для Texview, но моя проблема заключается в постоянном эффекте вращения.
Я добавил строку: rotateanimation.setFillAfter(true)
, которая работает хорошо, но наполовину!
Если мы запускаем новое вращение, анимация начинается с самого начала, а моя цель состоит в том, чтобы продлить этот поворот на 90 °, чтобы сделать полный оборот.
Mainactivity:
package training.geography.rotation
import android.content.Intent
import android.os.Bundle
import android.view.animation.Animation
import android.view.animation.RotateAnimation
import android.widget.Button
import android.widget.TextView
import androidx.appcompat.app.AppCompatActivity
class MainActivity() : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val textView = findViewById<TextView>(R.id.group1)
val buttonrotate = findViewById<Button>(R.id.rotatebutton)
val rotateanimation = RotateAnimation(0f, 90f, Animation.RELATIVE_TO_SELF, .5f, Animation.RELATIVE_TO_SELF, .5f)
buttonrotate.setOnClickListener {
rotateanimation.setDuration(1000)
rotateanimation.setFillAfter(true)
textView.setAnimation(rotateanimation)
textView.startAnimation(rotateanimation)
}
val buttonchoose= findViewById<Button>(R.id.choosebutton)
buttonchoose.setOnClickListener {
val intent = Intent(this, TripleRecyclerView::class.java)
startActivity(intent)
}
}
}
activity_main xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView android:id="@+id/group1"
android:layout_width="220dp"
android:layout_height="220dp"
android:text="@string/countriesgroup1"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginLeft="8dp" android:layout_marginStart="8dp"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="8dp" android:layout_marginRight="8dp"
android:layout_marginTop="128dp"
app:layout_constraintHorizontal_bias="0.497"/>
<Button android:id="@+id/rotatebutton"
android:text="Rotate to choose Group of Countries"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:layout_constraintTop_toBottomOf="@+id/group1"
android:layout_marginBottom="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginLeft="8dp" android:layout_marginStart="8dp"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="8dp" android:layout_marginRight="8dp" />
<Button android:id="@+id/choosebutton"
android:text="Choose Group"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:layout_constraintTop_toBottomOf="@+id/rotatebutton"
android:layout_marginBottom="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="8dp" android:layout_marginRight="8dp"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp" />
</androidx.constraintlayout.widget.ConstraintLayout>
Результат после поворота на 90 °
Вращение сработало хорошо, но как сделать его постоянным и выполнить полный оборот в 4 клика?