计时器的速度是否能超过1毫秒Android

时间:2017-11-13 06:01:34

标签: java android timer frequency

我想从模拟设备中采样声音并使用计时器。但是,使用Android API timer,您可以设置等待和延迟(以毫秒为单位)。例如

schedule(TimerTask task, Date firstTime, long period)//period in milliseconds
Schedules the specified task for repeated fixed-delay execution, beginning at the specified time.

这意味着我不能超过1ms(即1kHz)。

这是真的吗?

1 个答案:

答案 0 :(得分:1)

这是真的。它是系统定义的时间段。