2011-12-20 16 views

答えて

5

はい、PhoneGapのAPIを参照してください。 http://docs.phonegap.com/en/1.0.0/phonegap_events_events.md.html

// Call onDeviceReady when PhoneGap is loaded. 
// 
// At this point, the document has loaded but phonegap.js has not. 
// When PhoneGap is loaded and talking with the native device, 
// it will call the event `deviceready`. 
// 
document.addEventListener("deviceready", onDeviceReady, false); 

// PhoneGap is loaded and it is now safe to make calls PhoneGap methods 
// 
function onDeviceReady() { 
    // Register the event listener 
    document.addEventListener("backbutton", onBackKeyDown, false); 
} 

// Handle the back button 
// 
function onBackKeyDown() { 
} 
0

いいえリスナーが唯一そのためにそこにはありませんが、私はあなたがより良いonKeyDown()リスナーまたはを使用して、独自の長いバックキーリスナーを作ることができると思う、あなたはonLongKeyDown()リスナーで試してみることができます。 ..

幸運!

関連する問題