[Solved] Make a countdown without freezing application on Android? [closed]
From what I can get from your question, you are most likely having trouble because you are doing some sort of count-down in the main (UI) Thread. This will definitely cause the app to freeze for the duration of the timer. Simply use a timer, and do something like this: //global variables private int currTime … Read more