本文档部分API缺少示例代码,诚挚的邀请你参与到示例代码的编写中来,你可以在代码中发布2行自定义注释,内容自拟。 有意者可与刺鸟联系(QQ:4041990 Q群:7702175)
常用代码 » Android下点击返回键返回桌面
<!DOCTYPE>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
html,body{ background:#fff; font-size:35px;}
</style>
<body>
<div id="res"></div>
<script>
var I=0;
setInterval(function(){
I++;
document.getElementById("res").innerHTML = I;
},1000);
window.uexOnload = function(type){
if(!type){
uexWindow.setReportKey(0,1);
uexWindow.setReportKey(1,1);
uexWindow.onKeyPressed=function(k){
if(k=='1'){
alert('点击了menu键');
}else{
//返回键直接回到桌面
uexToHome.go();
}
};
}
};
</script>
</body>
</html>