在android(Java)睡眠(VC ++)函数中是否有任何等效函数。如果没有请提供方法来做。
例如。
Sleep(5000);
//延迟5000毫秒
感谢
答案 0 :(得分:0)
您可以尝试使用Thread.sleep()方法。
try {
//thread to sleep for the specified number of milliseconds
Thread.sleep(5000);
} catch (Exception e) {
e.printStackTrace();
}