欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【MUI】阻止安卓回退按钮

程序员文章站 2022-04-26 15:57:40
...
    //重写mui的back方法
	mui.back = function(){}
 
 	//重写backbutton的返回事件
    plus.key.addEventListener('backbutton', function(e) {
		if(!first){
			first = new Date().getTime();
			mui.toast('再按一次退出应用');
			setTimeout(function(){
				first = null;
			},2000);
		} else {
			if(new Date().getTime() - first < 2000){
				plus.runtime.quit();
			}
		}
   }, false)

 

相关标签: 记录