1. 程式人生 > >js 通過瀏覽器直接打開應用程序(IOS,Android) 標簽: androidios

js 通過瀏覽器直接打開應用程序(IOS,Android) 標簽: androidios

idm reserve port -a and 網站 als amp param

實現效果

如下圖所示,在手機瀏覽器中訪問京東的手機版網站(m.jd.com),頂部會有一個廣告圖,點擊這個廣告圖,如果手機上已經安裝了京東App,則直接打開,如果沒有安裝,則開始下載。

技術分享

實現方式

1.為Android應用的啟動Activity設置一個Schema,如下:

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

2.用戶點擊瀏覽器中的鏈接時,在動態創建一個不可見的iframe,並且讓這個iframe去加載步驟1中的Schema,如下:

var ifr = document.createElement(‘iframe‘);
ifr.src="cundong://splash"

3,如果在指定的時間內沒有跳轉成功,則當前頁跳轉到apk的下載地址(或下載頁),如下:

window.location = download_url;

HTML代碼

<!doctype 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">立即打開&gt;&gt;</a>
            <input id="J-download-app" type="hidden" name="storeurl" value="http://m.chanyouji.cn/apk/chanyouji-2.2.0.apk">
        </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) { 
                            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>

js 通過瀏覽器直接打開應用程序(IOS,Android) 標簽: androidios