CTO吩咐下來的任務(wù)...弄下能不能在瀏覽器中啟動我們的App虐骑。
踩坑
原來的做法是:
<a href="[scheme]://[host]/[path]?[query]">啟動應(yīng)用程序</a>
各個(gè)值的定義為:
scheme:判別啟動的App膀跌。 ※詳細(xì)后述
host:適當(dāng)記述
path:傳值時(shí)必須的key ※沒有也可以
query:獲取值的Key和Value ※沒有也可以
例如:
<a href="myapp://jp.app/openwith?name=zhangsan&age=26">啟動應(yīng)用程序</a>
而在android的清單文件的主頁面配置如下:
<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:scheme="myapp" android:host="jp.app" android:pathPrefix="/openwith"/>
</intent-filter>
然而...并不可以踢涌,我用的魅族的手機(jī)秋冰,用的魅族自帶瀏覽器犁罩。GG了
谷歌瀏覽器,或者是android原生瀏覽器可能可以产弹,或者是我們自帶的WebView派歌。
有看到帖子說是因?yàn)閐ata-sentintent的原因,具體原因我也沒有去查看痰哨。
有興趣的童鞋可以坐飛機(jī)直達(dá):--------> 飛吧
解決
此路不通我們走另外一條路胶果。
肯定是不能使用簡單的<intent-filter>來進(jìn)行查找,我們使用js~:
<!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>打開我的app</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://當(dāng)找不到該app的時(shí)候的下載地址斤斧,如應(yīng)用寶之類的...不要谷歌早抠,翻不了墻的哥們.com">
</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>
我們需要注意這個(gè)地方:
<input id="J-download-app" type="hidden" name="storeurl" value="http://當(dāng)找不到該app的時(shí)候的下載地址,如應(yīng)用寶之類的...不要谷歌折欠,翻不了墻的哥們.com">
記得替換成你們的下載地址贝或。
而我們大android的清單文件需要配置:
<activity android:name=".ui.activity.SplashActivity">
<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>
OK吼过,使用魅族的瀏覽器親測成功锐秦。其他牌子的瀏覽器稍候測試,畢竟我那么反感那些花里胡哨的瀏覽器盗忱,要下載測試我是不情愿酱床。。趟佃。
優(yōu)化
好了扇谣,好像單純地打開app...沒什么卵用啊,能不能傳值呢闲昭?答案是可以的~我們看js:
var config = {
/*scheme:必須*/
scheme_IOS: 'cundong://',
scheme_Adr: 'cundong://splash',
download_url: document.getElementById('J-download-app').value,
timeout: 600
};
其中的scheme_Adr就是android的匹配Scheme罐寨,如果需要傳值的話,就是在后面通過get的方式進(jìn)行傳值序矩。
var config = {
/*scheme:必須*/
scheme_IOS: 'cundong://',
scheme_Adr: 'cundong://splash?nama=Ly&age=18',
download_url: document.getElementById('J-download-app').value,
timeout: 600
};
然后在跳轉(zhuǎn)的頁面中進(jìn)行獲妊炻獭:
Intent i_getvalue = getIntent();
String action = i_getvalue.getAction();
if (Intent.ACTION_VIEW.equals(action)) {
Uri uri = i_getvalue.getData();
if (uri != null) {
String name = uri.getQueryParameter("name");
String age = uri.getQueryParameter("age");
showTs(name);
showTs(age);
showLog("name----------------"+name);
showLog("age----------------"+age);
}
}
就可以進(jìn)行Hhtml調(diào)起APP,并進(jìn)行頁面?zhèn)髦档牟僮髁?.. 其實(shí)難度主要是在js方面。