嗨,大家好我在使用moveTaskToBack(true);
方法将活动发送到后台后尝试录制几秒钟的音频。我创建了一个记录开始的服务,并设置了我想要录制音频的时间。一旦最小化,问题就出现了。它或多或少地在2秒后停止录制,我需要录制大约一分钟。我想知道如果应用程序在后台运行,是否真的可以录制音频。
我的服务记录如下:
@Override
protected void onHandleIntent(Intent intent) {
recorder = new MediaRecorder();
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
recorder.setOutputFormat(output_formats[currentFormat]);
recorder.setOutputFile(fake.getFilename());
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
try {
recorder.prepare();
recorder.start();
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
recorder.stop();
}
}, 6000000);
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
我的活动调用服务并关闭,如下所示:
public void mecierro() {
Intent intent = new Intent(Panic.this, Record_service.class);
Panic.this.startService(intent); //starting the service
start1 = new CountDownTimer(5000, 1000) {
public void onTick(long millisUntilFinished) {
}
public void onFinish() {
moveTaskToBack(true); //"minimizing" the app
}
}.start();
}
感谢您的帮助!
答案 0 :(得分:4)
是的,在后台录制音频是百分之百的可能。
使用服务启动录像机。
然后,您启动此服务的活动使用该方法
isLive
代替startForeground()
这是因为您的服务在可以进一步记录之前被杀死。除非用户强迫,否则前景服务不太可能被杀死。