We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4d213f commit 737e835Copy full SHA for 737e835
app/src/main/java/com/tool/tree/SplashActivity.kt
@@ -26,6 +26,7 @@ import kotlinx.coroutines.withContext
26
import java.io.BufferedReader
27
import java.io.DataOutputStream
28
import java.io.File
29
+import android.view.animation.AnimationUtils
30
31
class SplashActivity : AppCompatActivity() {
32
@@ -62,9 +63,8 @@ class SplashActivity : AppCompatActivity() {
62
63
showAgreementDialog()
64
}
65
- val imageView = findViewById<ImageView>(R.id.start_logo_xml)
66
val rotateAnim = AnimationUtils.loadAnimation(this, R.anim.ic_settings_rotate)
67
- imageView.startAnimation(rotateAnim)
+ binding.startLogoXml.startAnimation(rotateAnim)
68
69
applyTheme()
70
0 commit comments