Phonegap - Android Back按钮 - 如何捕捉按住事件

Dan*_*cer 3 android cordova

是否可以捕获Android设备后退按钮的按住事件以关闭应用程序?

干杯保罗

lde*_*uca 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() {
}
Run Code Online (Sandbox Code Playgroud)