I have a few controls that I don't want the user to see all the time, so they need to:
- Fade out 5 seconds after activity is created
- Fade in when user taps the screen
- Fade out after 5 seconds of visibility or when user taps screen again (whichever comes first)
I've seen a lot of implementations of animations out there (including Thread
, Handler
, and Animation
). Which method would work best in this situation?