我想在浏览器中点击链接时启动服务我知道从下面的意图过滤器我们可以开始活动。
<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>
答案 0 :(得分:1)
您需要让链接启动一个启动服务的活动。您无法直接从链接启动服务。