通过Android浏览器的javascript重定向打开应用程序的谷歌播放详细信息页面

前端之家收集整理的这篇文章主要介绍了通过Android浏览器的javascript重定向打开应用程序的谷歌播放详细信息页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果在 Android设备上打开,我希望我的网站重定向到Google Play Market中的特定应用.我按照 http://developer.android.com/guide/publishing/publishing.html上的说明操作:
"Display the details screen for a specific application: http://play.google.com/store/apps/details?id=<package_name>".

通过用户主动点击的链接很好用:

<a href="http://play.google.com/store/apps/details?id=<package_name>">Download app</a>

但是,如果我使用javascript检测设备并尝试重定向浏览器,则会自动将http:// …更改为https:// …并且用户将被重定向到Google Play网站而不是Google Play应用电话.

if(navigator.userAgent.toLowerCase().indexOf("android") > -1) {
    if(confirm("Download app?")) {
        window.location.href= "http://play.google.com/store/apps/details?id=<package_name>";
    }
}

有没有办法改变这种行为,我的测试设备是三星Galaxy与Android 2.3.3?

解决方法

这似乎有效.重定向会在使用默认浏览器时打开Goog​​le Play应用,但会在使用Chrome时将链接转换为https:// play.google …
if(navigator.userAgent.toLowerCase().indexOf("android") > -1) {
    if(confirm("Download app?")) {
        window.location.href= "market://details?id=<packagename>";
    }
}
原文链接:https://www.f2er.com/android/316113.html

猜你在找的Android相关文章