在Android上,我尝试拦截收到的邮件,以便在我的应用中执行某些操作。
要做到这一点,我在我的应用清单中使用了意图:
<intent-filter>
<action android:name="com.android.email.intent.action.EMAIL_RECEIVED" />
<action android:name="android.intent.action.VIEW" />
<data android:scheme="email" />
<data android:host="messages" />
</intent-filter>
使用K9邮件客户端时工作正常。
但它不适用于gmail应用或本机邮件应用。
我想我错过了正确的意图行动,你知道了吗?
提前致谢!