1. 程式人生 > >android 外部html頁面啟動本地app及app啟動問題

android 外部html頁面啟動本地app及app啟動問題

外部html介面啟動本地app
http://my.oschina.net/liucundong/blog/354029?fromerr=KocmE0mO
<pre name="code" class="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">立即開啟>></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>
外部html啟動本地app之後發現出了問題,如果啟動之前那個app已經打開了,那麼啟動就會導致有些fragment載入不出來了,
後來在啟動介面設定啟動模式為singleInstance,啟動就正常了,但又出現了一個問題,這個啟動模式是新建立了一個棧,那麼按home鍵app回到後臺後,再點選桌面圖示進入app的時候啟動介面就跑出來了,然後才顯示剛才開啟的介面。又百度了一下,發現http://blog.csdn.net/busjb/article/details/40891239</span>
在啟動介面添加了程式碼就正常了
if ((getIntent().getFlags() & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT) != 0) {
			//結束你的activity
			finish();
			return;
		}

但測試的時候又發現了新的問題,app沒有啟動,在html介面啟動,那麼按home返回桌面,再在桌面啟動,fragment又不顯示了,無意中發現手機當前的

應用列表裡竟然沒有這個app,但這個app分明是運行了,我完全不知道怎麼回事。

於是隨便搞搞,把啟動activity的啟動模式設定成singTast 就可以了,雖然我還是不知道為什麼