//安卓机物理返回键监听
function runtimeQuit(){
var first = null;
mui.back=function(){
if(!first){
first = new Date().getTime();
mui.toast('再按一次退出应用');
setTimeout(function(){
first = null;
},2000);
}else{
if(new Date().getTime() - first < 2000){
plus.runtime.quit();
}
}
}
/*mui.back=function(){
mui.toast('不能再返回了');
return
}*/
}