how are you guys
I've searched about Timer and how it's working in java
I found this easy way which is making for loop then add this commend
Thread.sleep(1000);
this commend will make the loop stop for 1 second
BUT
what I want to do is to make an app that looks like a question game
the contestant will see the question and choose the right answer but the timer should be working in the same time
if I used this way ( Thread.sleep(1000)
)
every thing in the app will stop until the timer finish
what do I do now !?