我收到每周一次的Pinterest时事通讯。当我点击图片或里面的Google Play上的可用徽标时,手机上会出现一个内置弹出窗口,让我打开Chrome或Pinterest的链接。这里的关键是Pinterest应用程序。在我的笔记本电脑上,它会显示一个pinterest.com链接。
所以我正在编写我们的时事通讯并决定这样做。我所做的就是在<a href />
部分设置我们应用的Google Play链接,但它会打开Google Play而不是向我提供在手机上打开应用的选项。
<a href="https://play.google.com/store/apps/details?id=com.app.app"><img src="http://www.website.com/mylogo.png" width="100" height="35"/></a>
我该怎么做?
解
我想为那些不理解它如何工作的人回答这个问题,就像我一样,但遗憾的是stackoverflow不允许我这样做。
这就是我所做的:
清单:
<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="http" android:host="yolify.net"
android:pathPrefix="/"/>
</intent-filter>
链接:
<a href="http://yolify.net">LINK</a>
您的网站(就在</head>
标记之前)
<script>
if (screen.width <= 1080) {
document.location = "https://play.google.com/store/apps/details?id=com.yolify.android";
}
</script>
这里发生了什么?
我想强调的是,尽管stackoverflow上有大约5个类似的问题,但它们都没有给出背景的真实解释。我希望我能帮助其他人解决这个问题。