每当在浏览器中点击链接时,我想启动一项服务,我从下面的意图过滤器知道我们可以启动活动。
<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="acb" />
android:host="*.abc.com"
android:scheme="http" />
<data
android:host="*.abc.com"
android:scheme="http" />
</intent-filter>