How to make an Android program 'wait'

后端 未结 8 1300
深忆病人
深忆病人 2020-12-16 02:15

I want to cause my program to pause for a certain number of milliseconds, how exactly would I do this?

I have found different ways such as Thread.sleep( time )

8条回答
  •  失恋的感觉
    2020-12-16 02:34

    I think Thread.sleep(....) probably is what you want you just may not be doing it correctly. What exactly are you trying to pause? Hopefully not the UI thread? Im guessing you have some background thread performing some tasks at some kind of interval? If so then Thread.sleep will put that particular thread to sleep for a certain time, it will not however pause all threads.

提交回复
热议问题