我想在 Android 市场创建一个可下载的书签
我目前已经有一个网络应用程序,我想创建一个可以从 android 市场(以及应用程序商店,如果可能的话)下载的书签,它会将用户重定向到我的网络应用程序。我想知道这是否可能,如果可以,该怎么做?
I currently have a web app already and I would like to create a bookmark that can be downloaded from the android marketplace (and app store if possible) and it would redirect the user to my web app. I want to know if this is possible and if so how can it be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以围绕您的网站构建自己的 webview 应用程序 shell:
http://developer.android。 com/guide/webapps/webview.html
或者您可以让您的应用程序使用您的特定网址启动默认浏览器:
向浏览器发送 Intent 以打开特定 URL
You can build your own webview app shell around your website:
http://developer.android.com/guide/webapps/webview.html
Or you can have your app simply launch the default browser with your specific url:
Sending an Intent to browser to open specific URL
如果你使用PhoneGap,你可以同时做一个iphone应用程序。
If you use PhoneGap, you can do an iphone app at the same time..