mirror of
https://github.com/apache/cordova-android.git
synced 2025-04-03 13:28:06 +08:00
60 lines
2.3 KiB
HTML
Executable File
60 lines
2.3 KiB
HTML
Executable File
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width,height=device-height,user-scalable=no,maximum-scale=1.0,initial-scale=1.0" />
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> <!-- ISO-8859-1 -->
|
|
<title>PhoneGap</title>
|
|
<link rel="stylesheet" href="../master.css" type="text/css" media="screen" title="no title" charset="utf-8">
|
|
<script type="text/javascript" charset="utf-8" src="../phonegap.js"></script>
|
|
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
var deviceReady = false;
|
|
|
|
function roundNumber(num) {
|
|
var dec = 3;
|
|
var result = Math.round(num*Math.pow(10,dec))/Math.pow(10,dec);
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* Function called when page has finished loading.
|
|
*/
|
|
function init() {
|
|
document.addEventListener("deviceready", function() {
|
|
deviceReady = true;
|
|
console.log("Device="+device.platform+" "+device.version);
|
|
}, false);
|
|
window.setTimeout(function() {
|
|
if (!deviceReady) {
|
|
alert("Error: PhoneGap did not initialize. Demo will not run correctly.");
|
|
}
|
|
},1000);
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
<body onload="init();" id="stage" class="theme">
|
|
|
|
<h1>Display Other Content</h1>
|
|
<div id="info">
|
|
</div>
|
|
<h2>Action</h2>
|
|
<a href="javascript:" class="btn large" onclick="document.location='tel:5551212';" >Call 411</a>
|
|
<a href="mailto:bob@abc.org?subject=My Subject&body=This is the body.%0D%0ANew line." class="btn large">Send Mail</a>
|
|
<a href="sms:5125551234?body=The SMS message." class="btn large">Send SMS</a>
|
|
<a href="http://www.google.com" class="btn large">Load Web Site</a>
|
|
<!-- Need new URL -->
|
|
<!-- a href="http://handle.library.cornell.edu/control/authBasic/authTest/" class="btn large">Basic Auth: test/this</a -->
|
|
<a href="page2.html?me=test" class="btn large">Load another PhoneGap page</a>
|
|
<h2>Android Only</h2>
|
|
<a href="geo:0,0?q=11400 Burnet Rd, Austin, TX" class="btn large">Map IBM</a>
|
|
<a href="market://search?q=google" class="btn large">Search Android market</a>
|
|
<a href="content://media/external/images/media" class="btn large">View image app</a>
|
|
|
|
<h2> </h2><a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
|
|
</body>
|
|
</html>
|