2014-10-28 60 views
-1

任何人都可以請告訴我如何從特定網址啓動android應用程序。 如果我從郵件中獲取此URL。啓動與特定網址鏈接的Android應用程序

請建議我如何在特定網址上打開應用。

+0

http://stackoverflow.com/questions/2958701/launch-custom-android-application-from-android-browser – 2014-10-28 13:25:10

+0

HTTP: //stackoverflow.com/questions/3469908/make-a-link-in-the-android-browser-start-up-my-app/3472228#3472228 – 2014-10-28 13:25:53

回答

0

一種選擇是擁有一個網站,併爲該網站上的特定URI擁有一個意圖過濾器。例如,這是市場並攔截在其網站上的URI:

<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="http" android:host="market.android.com" 
      android:path="/search" /> 
    </intent-filter> 
+0

我使用http://www.jobdiagnosis.com/但它不工作 – 2014-10-29 09:16:10

相關問題