Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在开始时间 2 分钟后停止 AudioRecord。使用 MediaRecorder,我使用 setMaxDuration 并且效果很好,但我也需要使用 AudioRecord 的好方法。
感谢帮助
你可以这样试试。。
handler=new Handler(); Runnable r=new Runnable() { public void run() { recorder.stop(); recorder.release(); } }; handler.postDelayed(r, 120000);