Skip to content

Instantly share code, notes, and snippets.

@alistairsykes
Created April 7, 2020 10:19
Show Gist options
  • Save alistairsykes/6a01a8511de1ca82db3a78d5f1207577 to your computer and use it in GitHub Desktop.
Save alistairsykes/6a01a8511de1ca82db3a78d5f1207577 to your computer and use it in GitHub Desktop.
textError.startAnimation(
AnimationUtils.loadAnimation(context, R.anim.shake)
)
textError.postOnAnimationDelayed({
if (!textError.isAttachedToWindow) return@postOnAnimationDelayed
textError.animate()
.alpha(0F)
.setDuration(500)
.setInterpolator(LinearInterpolator())
.start()
}, 2000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment