2016-04-02 44 views
0

是否可以從鏈接啓動服務?我嘗試使用下面的代碼,但無法啓動。從鏈接Android啓動服務?

鏈接:

"<a href=\"com.example.tohome://deeplink/home/inbox?id=3\">test to launch myapp</a> <br /><br />" 

例子:

<service android:name=".PrintService" 
      android:enabled="true"> 

      <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="com.example.tohome" android:host="deeplink"/> 
      </intent-filter> 
</service> 

回答

1

對不起,先生。瀏覽器在尊重定製方案的情況下,只會使用它們開始活動。不過,歡迎您有Theme.Translucent.NoTitleBar活動啓動服務,然後致電finish(),全部來自onCreate()

+0

你的每一個答案都是免費的教學課程。非常感謝。你是那個人。 – statosdotcom