通过浏览器直接打开Android应用程序

需求描述:

点击一个按钮,如果本地安装了指定的Android应用,就直接打开它;如果没有安装,则直接下载该应用的安装文件(也可以跳转到下载界面)。

实现方式:

为Android应用的启动Activity设置一个Schema,如下:

xml

<data android:host="splash" android:scheme="cundong"/>

用户点击浏览器中的链接时,在动态创建一个不可见的iframe,并且让这个iframe去加载上步骤中的Schema,如下:

javascript

var ifr = document.createElement(' iframe ');

ifr.src = " cundong://splash " ;

如果在指定的时间内没有跳转成功,则当前页跳转到apk的下载地址(或下载页),如下:

javascript

window.location = download_url ;

HTML代码

<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
		
		<meta name="apple-mobile-web-app-capable" content="yes">
		<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
		
		<title>this's a demo</title>
		<meta id="viewport" name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,minimal-ui">
	</head>
	<body>
		<div>
			<a id="J-call-app" href="javascript:;" class="label">立即打开>></a>
            <input id="J-download-app" type="hidden" name="storeurl" value="https://passport.sina.cn/sso/jmp?action=iosapp">
		</div>
		
		<script>
			(function(){
				var ua = navigator.userAgent.toLowerCase();
				var t;
			    var config = {
			        /*scheme:必须*/
			        scheme_IOS: 'cundong://',
			        scheme_Adr: 'cundong://splash',
			        download_url: document.getElementById('J-download-app').value,
			        timeout: 600
			    };

				function openclient() {
				    var startTime = Date.now();

				    var ifr = document.createElement('iframe');
                    
                
                    ifr.src = ua.indexOf('os') > 0 ? config.scheme_IOS : config.scheme_Adr;
                    ifr.style.display = 'none';
                    document.body.appendChild(ifr);
                    
                    var t = setTimeout(function() {
                        var endTime = Date.now();
                        
                        if (!startTime || endTime - startTime < config.timeout + 200) { //如果装了app并跳到客户端后,endTime - startTime 一定> timeout + 200
                            window.location = config.download_url;
                        } else {
                        	
                        }
                    }, config.timeout);

				    window.onblur = function() {
				        clearTimeout(t);
				    }
				}
				window.addEventListener("DOMContentLoaded", function(){
					document.getElementById("J-call-app").addEventListener('click',openclient,false);

				}, false);
			})()
		</script>
	</body>
</html>

AndroidMainfext.xml

<activity
     android:name=".activity.LauncherActivity"
     android:configChanges="orientation|keyboardHidden|navigation|screenSize"
     android:label="@string/app_name"
     android:screenOrientation="portrait" >
        <intent-filter>
           <action android:name="android.intent.action.MAIN" />
           <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data android:host="splash" android:scheme="cundong" />
       </intent-filter>
</activity>



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值