shripal
shripal

Reputation: 1222

how can we get E-mail receiving notification in android

how can we get E-mail receiving notification in android

Upvotes: 1

Views: 806

Answers (2)

Naresh Kaushik
Naresh Kaushik

Reputation: 302

same with me also can we get info by registering a content observer like this

ContentResolver contentResolver = getContentResolver();
m_EmailObserver = new EmailObserver(this); contentResolver.registerContentObserver(ContactsContract.CommonDataKinds.Email.CONTENT_URI, true, m_EmailObserver);

in email observer we can read email recieved is it not correct way to get email notifiactions

Upvotes: 2

CommonsWare
CommonsWare

Reputation: 1006674

There is no such thing as "E-mail receiving notification in android", any more than there is "E-mail receiving notification" in Windows. Email is received by applications, not by the operating system. Individual email applications may or may not send out broadcast Intents advertising the receipt of email -- you would have to contact the developers of those applications to find out.

Upvotes: 2

Related Questions