iOS4.3でiPhone4でネイティブアプリを作っていました
私の Body onLoad に追加中
document.addEventListener("pause", Game.prototype.pauseListener.bind(this), false);
document.addEventListener("resume", Game.prototype.resumeListener.bind(this), false);
そして、その同じファイルに関数を書いています
Game.prototype.resumeListener= function()
{
console.log("in resumeListener");
this.PauseGame(false);
}
Game.prototype.pauseListener= function()
{
this.PauseGame(true);
}
このコードはAndroidで完全に正常に機能しており、アプリを手動で最小化するとアプリケーションが一時停止しません。
基本的に Pause および Resume イベントは発生しません。
私はPhonegap1.4.1を使用しています