WebIntent プラグインを使用すれば、端末にインストールされている他のアプリを、Monaca アプリから起動できます。ここでは、例として、地図を表示するアプリを起動させます。
プラグインの追加方法 ( Monaca 上での処理 )
コピー <!DOCTYPE HTML>
<html>
<head>
<title>WebIntent DEMO</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<script src="components/loader.js"></script>
<link rel="stylesheet" href="components/loader.css">
<script type="text/javascript">
function startActivity() {
window.plugins.webintent.startActivity({
action: window.plugins.webintent.ACTION_VIEW,
url: 'geo:0, 0?q=' + 'dummy address'},
function() {},
function() {alert('Failed to open URL via Android Intent')}
);
}
</script>
</head>
<body>
<hr> WebIntent test <hr><br>
<input type="button" onClick ="startActivity()" value ="startActivity()" /><br>
</body>
</html>
コピー //Call to the specified phone number
url : 'tel: phone_number=' + '03-5875-6862'
//Open the specified page in a browser
url : 'http://www.asial.co.jp'
//Open the information of the 1st person in the contact
url : 'content://contacts/people/1'