Android SystemClock

简介: import android.os.SystemClock;Android官方文档:public static longelapsedRealtime ()Returns milliseconds since boot, including time spent in sleep.返回Android系统启动至今的时间。
import android.os.SystemClock;


Android官方文档:

public static long elapsedRealtime ()

Returns milliseconds since boot, including time spent in sleep.

返回Android系统启动至今的时间。


public static void sleep (long ms)

Waits a given number of milliseconds (of uptimeMillis) before returning. Similar to sleep(long), but does not throw InterruptedException; interrupt() events are deferred until the next interruptible operation. Does not return until at least the specified number of milliseconds has elapsed.

与Java Thread.sleep(long ms)基本相似,但是Android的SystemClock忽略InterruptedException


相关文章
|
Java 测试技术 Android开发
Android LayoutAnimation不生效
Android LayoutAnimation不生效
159 0
DHL
|
Linux
为数不多的人知道的AndroidStudio快捷键(二)
为数不多的人知道的AndroidStudio快捷键(二)
DHL
133 0
为数不多的人知道的AndroidStudio快捷键(二)
|
Android开发
android之Fragment生命周期
android之Fragment生命周期
android之Fragment生命周期
|
消息中间件 Android开发
|
XML Android开发 数据格式