在我的应用程序中,当应用程序停止录制音频时,它会启动另一个活动,并在onResume()中运行函数automaticSync(),但是当设备被锁定时,它不会从后台运行函数,在启动时是否有方法从后台运行第二个活动中的函数。
记录发起另一项活动的活动
if (autoSyncSwitchSelected1) { // If user's preference is automatic syncing then set the
// activity to syncRecording which will call the
我有个听众
public class LeapEventListener : Listener
{
public string frame = string.Empty;
public string Frame { get { return frame; } }
public event EventHandler FrameChanged;
private void SetFrame(string value)
{
if (value == null) value = string.Empty;
if (frame ==