混合应用开发 退出应用 (三)

本文将为大家介绍如何使用Cordova API进行应用程序退出。本教程将沿用之前教程例子代码。

一,首先要引入cordova.js文件

<!doctype html>
<html>
  <head>
    <title>DEMO</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" >
    <meta name="apple-mobile-web-app-capable" content="yes" >
    <meta name="apple-touch-fullscreen" content="yes" >
    
    <link rel="stylesheet" type="text/css" href="css/cupertino.css">
	<link rel="stylesheet" type="text/css" href="css/app.css">
    
    <script src="lib/cordova.js"></script>
	<script src="lib/sencha-touch-all.js"></script>
	<script src="app.js"></script>
  </head>
  <body onload="initApp()">

  </body>
</html>



二,加入监听事件
function initApp() {
    document.addEventListener("deviceready", onDeviceReady, false);
}

function onBackKeyDown(){
	Ext.Msg.confirm("温馨提示", "是否退出程序?", function(buttonId){
		if(buttonId=='yes')
		navigator.app.exitApp(); 
	});
}



三,运行效果


四,源码及安装包地址https://git.oschina.net/czpae86/Hybrid-Apps.git

转载于:https://my.oschina.net/u/560628/blog/492101

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值