peterlawn
peterlawn

Reputation: 2381

android , is there any method to let service delay or sleep?

i need to let service sleep for 0.5 sec just as using Thread.sleep();

is there any method??

Upvotes: 20

Views: 19557

Answers (1)

colithium
colithium

Reputation: 10327

Yes there is. It's called SystemClock.sleep(millis). There's also Thread.sleep(millis). I suggest reading up on the differences.

Upvotes: 21

Related Questions