响应Google以外的网址

时间:2014-08-27 05:26:21

标签: android

我使用Android Respond To URL in Intent的答案来回复网址。但是,它适用于谷歌。当我在清单中更改主机时,它不起作用。如何使用其他网址?

1 个答案:

答案 0 :(得分:0)

IN INTENT FILTER更改主机网址的主机

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