我想从模拟设备中采样声音并使用计时器。但是,使用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)。
这是真的吗?
答案 0 :(得分:1)
这是真的。它是系统定义的时间段。