启动或安装应用程序的链接
我想使用来自 Web 链接的输入参数启动我的应用程序,或者回退到我的应用程序的市场页面,以便用户可以安装它。
问题是如何让用户安装应用程序并从市场应用程序启动它,但使用输入参数。
大致如下:
market://search?q=<query>¶ms=start?a=foo&b=bar
I'd like to launch my app with input parameters from a Web link, or fallback on going to the market page for my app, so that user could install it.
The question is how to have the user install the app and launch it from the market app, but with the input parameters.
Something along the lines of the following:
market://search?q=<query>¶ms=start?a=foo&b=bar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以构建一个 URL,从设备的浏览器启动您的应用程序,并在有限的范围内提供额外的参数。
您需要为您的
Activity
启用BROWSABLE过滤器。这是一种不好的形式,因为任何通过此链接运行的非 Android 浏览器都会对此做出不良反应。
You can construct a URL that will start your app from the device's browser, and to a limited extent, provide extra parameters in it.
You'll need to enable the BROWSABLE filter for your
Activity
.This is kind of bad form, though since any non-Android browser that runs across this link will react badly to it.