我正在编写Windows Phone 8.1(WINPRT-XAML)应用程序。
我正在使用 MediaCapture API 在应用中录制视频。
写道:
您应该在Windows Phone上的Suspending事件中清理媒体捕获资源。
private async void OnSuspending(object sender, SuspendingEventArgs e)
{
var deferral = e.SuspendingOperation.GetDeferral();
//cleanup camera resources
await CleanupCaptureResources();
deferral.Complete();
}
public async Task CleanupCaptureResources()
{
if (IsRecording && MediaCapture != null)
{
await MediaCapture.StopRecordAsync();
IsRecording = false;
}
if (IsPreviewing && MediaCapture != null)
{
await MediaCapture.StopPreviewAsync();
IsPreviewing = false;
}
if (MediaCapture != null)
{
if (PreviewElement != null)
{
PreviewElement.Source = null;
}
MediaCapture.Dispose();
}
}
在Windows Phone上,清理处理程序中的MediaCapture资源 暂停应用程序生命周期事件并在中重新创建它们 恢复活动。
所以我在App.cs中添加了以下行:
public App()
{
this.InitializeComponent();
this.Suspending += this.OnSuspending;
this.Resuming += this.App_Resuming;
}
void App_Resuming(object sender, object e)
{
//TODO: RESUME CAMERA PREVIEW and MediaCapture object here
}
但是,应用程序从暂停状态恢复到前台状态后,App_Resuming
永远不会启动。
如何恢复相机资源?
答案 0 :(得分:4)
你确定你正确测试了吗?如果您正在调试它们(因此它们无法恢复),应用程序将不会挂起,但您可以从Visual Studio触发生命周期事件。
此处有更多信息:https://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh465115.aspx
有关使用Visual Studio进行调试的说明:Visual Studio阻止Windows挂起附加到调试器的应用程序。这是为了允许用户在应用程序运行时查看Visual Studio调试UI。在调试应用程序时,可以使用Visual Studio向其发送暂停事件。确保显示“调试位置”工具栏,然后单击“挂起”图标。