Created
April 7, 2020 10:19
-
-
Save alistairsykes/6a01a8511de1ca82db3a78d5f1207577 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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