1
アナログデバイスからサウンドをサンプリングしたいのですが、タイマーを使用します。ただし、Android API timerでは、待ち時間と遅延をミリ秒単位で設定できます。たとえば、タイマーが1msより速く進むことができますか?
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)より速く進むことができないことを意味します。
本当ですか?