我正在使用MediaRecorder进行应用程序,我想显示录制音频的时间限制。 MediaRecorder仅用于录制语音。任何人都知道如何在MediaRecorder上显示时间。
答案 0 :(得分:5)
如果您已经为编写MediaRecorder录制和停止录制音频奠定了基础,那么获取录制时间并不会太困难。
显示持续时间只是在记录开始时将start_time
设置为System.currentTimeMillis();
。
然后通过使用Runnable
我们可以执行循环直到记录停止。
final Handler handler = new Handler();
Runnable update_runnable = new Runnable() {
public void run() {
updateTextView();
}
};
然后使用updateTextView()
你会做这样的事情:
long duration = (int) ((System.currentTimeMillis() - start_time) / 1000);
// ... set TextView with duration value
handler.postDelayed(update_runnable, 1000); // handler re-executes the Runnable
// every second; which calls
// updateTextView