Android:자바 의 delay

293 단어 자바androiddelay
    /**
     * Sleep for a period of time.
     * @param secs the number of seconds to sleep
     */
    private static void nap(int secs) {
        try {
            Thread.sleep(secs * 1000);
        } catch (InterruptedException ignore) {
        }
    }

좋은 웹페이지 즐겨찾기