是 android(Java) 中任何与 sleep(VC++) 函数等效的函数。如果没有,请提供一种方法来做到这一点。
例如。
Sleep(5000);
// 延迟 5000 毫秒
谢谢
您可以尝试Thread.sleep()方法。
try {
//thread to sleep for the specified number of milliseconds
Thread.sleep(5000);
} catch (Exception e) {
e.printStackTrace();
}