0

是 android(Java) 中任何与 sleep(VC++) 函数等效的函数。如果没有,请提供一种方法来做到这一点。

例如。 Sleep(5000);// 延迟 5000 毫秒

谢谢

4

1 回答 1

0

您可以尝试Thread.sleep()方法。

try {
        //thread to sleep for the specified number of milliseconds
        Thread.sleep(5000);
        } catch (Exception e) {
              e.printStackTrace();
        }
于 2012-06-09T07:03:01.680 回答