从浏览器和URL缩短器启动自定义Android应用程序

时间:2013-11-06 14:29:25

标签: android intentfilter url-shortener

我知道如果我向我的AndroidManifest.xml添加一个intent-filter,如下所示:

<intent-filter>
    <data android:scheme="http" android:host="www.example.com"/>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT"/>
    <category android:name="android.intent.category.BROWSABLE"/>
</intent-filter>

如果用户点击具有www.example.com主机的网站,系统将宣传用户使用我的应用。但是,如果链接被url缩短服务重定向,这似乎不起作用。当链接被这种服务重定向时,Youtube如何处理网址缩短的URL?

0 个答案:

没有答案