Created
January 23, 2019 14:17
-
-
Save nadar71/0b436a7fc058a2b8df928872b999d127 to your computer and use it in GitHub Desktop.
Android text blinking animation.
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
// giving a blink animation on TextView | |
txtLocationResult.setAlpha(0); | |
txtLocationResult.animate().alpha(1).setDuration(300); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment