-
Notifications
You must be signed in to change notification settings - Fork 2
Splash
heewon edited this page Jan 15, 2021
·
2 revisions
private fun initSplashAnimation() {
val animationView = binding.lottieanimationSplash
animationView.setAnimation("momo_splash.json")
animationView.playAnimation()
animationView.addAnimatorListener(object: Animator.AnimatorListener {
...
override fun onAnimationEnd(animation: Animator?) {
val intent = Intent(this@SplashActivity, HomeActivity::class.java)
startActivity(intent)
finish()
}
}