This version of the documentation is under development!
Click here for the latest released version.
resume
當應用程式從背景中檢索時,將觸發該事件。
document.addEventListener("resume", yourCallbackFunction, false);
詳細資訊
resume
事件觸發時的本機平臺拔出從背景的應用程式。
應用程式通常應使用 document.addEventListener
將一個事件攔截器附加一次 [deviceready](events.deviceready.html)
事件火災。
支援的平臺
- 亞馬遜火 OS
- Android 系統
- 黑莓 10
- iOS
- Windows Phone 8
- Windows 8
快速的示例
document.addEventListener("resume", onResume, false);
function onResume() {
// Handle the resume event
}
完整的示例
<!DOCTYPE html>
<html>
<head>
<title>Resume Example</title>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
// Wait for device API libraries to load
//
function onLoad() {
document.addEventListener("deviceready", onDeviceReady, false);
}
// device APIs are available
//
function onDeviceReady() {
document.addEventListener("resume", onResume, false);
}
// Handle the resume event
//
function onResume() {
}
</script>
</head>
<body onload="onLoad()">
</body>
</html>
iOS 的怪癖
從調用任何互動式函數 [pause](events.pause.html)
事件處理常式以後執行應用程式恢復時,由發出信號 resume
事件。 這些包括警報, console.log()
,和任何調用從外掛程式或 API,科爾多瓦,穿過目標 C.
活動事件
特定于 iOS
active
事件是可用作為替代resume
,並檢測時使用者禁用鎖定按鈕以解鎖設備與應用程式在前臺運行。 如果為多工啟用的應用程式 (和設備),則這配對與其後resume
事件,但只在 iOS 5 下的。 實際上,所有鎖定應用程式已啟用多工的 iOS 5 中被推到背景中。 對於應用程式繼續運行在 iOS 5 下鎖定時,禁用應用程式的多工處理通過將UIApplicationExitsOnSuspend設置為YES
。 若要運行在 iOS 4 上鎖定狀態時,此設置並不重要。恢復事件
當從調用
resume
事件處理常式,如互動式功能alert()
需要包裝在setTimeout()
調用超時值為零,否則應用程式掛起。 例如:document.addEventListener("resume", onResume, false); function onResume() { setTimeout(function() { // TODO: do your thing! }, 0); }