Skip to content

Instantly share code, notes, and snippets.

@nadar71
Created January 23, 2019 14:17
Show Gist options
  • Save nadar71/0b436a7fc058a2b8df928872b999d127 to your computer and use it in GitHub Desktop.
Save nadar71/0b436a7fc058a2b8df928872b999d127 to your computer and use it in GitHub Desktop.
Android text blinking animation.
// 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