如何检测WinJS WP8.1应用程序何时被逻辑删除后恢复?

时间:2015-02-09 13:26:42

标签: windows-phone windows-phone-8.1 winjs

在Windows Phone C#/ XAML应用中,可以在Application_Activated中的App.xaml.cs方法中检测到墓碑后恢复:

 private void Application_Activated(object sender, ActivatedEventArgs e)
 {
     if (!e.IsApplicationInstancePreserved)
     {
         // we were tombstoned!
     }
 }

如何在Windows Phone HTML / Javascript应用中检测到它?

1 个答案:

答案 0 :(得分:0)

resuming事件添加事件监听器(在WP8.1上,您将在恢复事件后获得activated事件。

Windows.UI.WebUI.WebUIApplication.addEventListener("resuming", resumingHandler, false);

有关详细信息,请参阅MSDN的How to resume an app (HTML)