在android中共享链接

时间:2016-08-12 07:47:12

标签: android

我开发了一个ecomerce应用程序。我想开发类似于flipkart app的分享功能。

我在flipkart应用上打开一个特定的产品。他们有分享按钮我点击分享我得到以下链接:

http://dl.flipkart.com/dl/united-colors-benetton-sneakers/p/itmee2ahxjhz3pbz?pid=SHOEE2AHDGPBFFZ8&cmpid=product.share.pp

当我点击链接时,会打开如下对话框:

enter image description here

如果我点击flipkart,它会自动在应用程序上打开该产品,或者如果我选择浏览器,它会自动打开网站。

这是怎么做到的?我想知道逻辑吗?有人可以帮我解决这个问题吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

尝试这样的事情:

<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" />
        <data android:scheme="https" />
        <data android:host="www.android.com" />
</intent-filter>