I have a silly little game that I made just for myself, but I am thinking of sharing it with friends as its not really ready for "prime time". The game involves the person making a move in 4 seconds.
In my game, everytime a level advances I want to disable all buttons and show a countdown like 3...2...1... and then all the buttons get enabled again.
Now there are two ways of doing this (that I can think of) send an intent and move to another activity where I can have a "splashy" 3,2,1 animation and then come back to the game activity... or
simply have some text in the same game screen activity that goes 3...2...1..go!
Which would you recommend?
I'm just scared that if I send the person to another activity, then after the animation they come back, and the game wouldnt have totally loaded but the timer will be running and thus the game will give them less time to make their move.
Thanks in advance!