2015-05-26 121 views
-2

我們正在發送用戶電子郵件作爲通知。電子郵件正文具有「接受」和「拒絕」按鈕。我們正在從Android應用程序以及從Web應用程序向用戶發送電子郵件。想要打開我們的應用程序,如果用戶點擊電子郵件中包含的按鈕。如果用戶檢查來自android設備的電子郵件並點擊按鈕,則應該打開相應的活動以方便用戶。如何在安裝應用程序時打開該活動。如何從電子郵件打開android應用程序活動?

謝謝,

Prashant。

+0

您需要啓用深層鏈接https://developer.android.com/training/app-indexing/deep-linking.html –

回答

0

嘗試這樣的:

設置HREF鏈接到像你這樣的按鈕: 「http://example.com/path

,並設置意圖過濾像以下爲目標的活動:

<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:host="example.com" 
     android:pathPrefix="/path" 
     android:scheme="http" /> 
</intent-filter> 

我認爲路是可選的。

另請參考:Android Documentation的意圖過濾

相關問題