混合應用開發 退出應用 (三)

本文將爲你們介紹如何使用Cordova API進行應用程序退出。本教程將沿用以前教程例子代碼。 css

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

<!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
git

相關文章
相關標籤/搜索