0

每当在浏览器中点击链接时,我想启动一项服务,我从下面的意图过滤器知道我们可以启动活动。

         <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>
4

1 回答 1

1

您需要让链接启动一个启动服务的活动。您不能直接从链接启动服务。

于 2012-11-23T12:03:53.250 回答