[android-developers] Re: BroadcastReceiver for incoming Gmail?

2013-03-27 Thread Camille
FYI, the Gail team closed this provider a while ago so this solution is no longer valid, you can't read the emails from any Gmail content provider. They have, however created a small, limited API to let you read how many unread emails there are. You can read about it here:

[android-developers] Re: BroadcastReceiver for incoming Gmail?

2010-01-02 Thread Rames
Hi Gnugu, Is it possible to launch the Gmail application from by code in my application? Thanks, Rames.P. On Nov 29 2009, 2:10 am, gnugu rho...@gmail.com wrote: Here is how: 1. You need to register a content observer (not broadcast receiver)

[android-developers] Re: BroadcastReceiver for incoming Gmail?

2010-01-02 Thread gnugu
http://www.openintents.org/en/node/121 On Jan 1, 10:43 am, Rames rame...@gmail.com wrote: Hi Gnugu,   Is it possible to launch theGmailapplication from by code in my application? Thanks, Rames.P. On Nov 29 2009, 2:10 am, gnugu rho...@gmail.com wrote: Here is how: 1. You need to

[android-developers] Re: BroadcastReceiver for incoming Gmail?

2009-11-28 Thread Olivier
gnugnu, did you get a solution ? On 8 nov, 20:55, gnugu rho...@gmail.com wrote: Thanks moneytoo for your answer. How does Google themselves put the notification on the status bar then? I'm sure there is something. Is there a way to catch the intents flying around? To sniff it out? On Nov

[android-developers] Re: BroadcastReceiver for incoming Gmail?

2009-11-28 Thread gnugu
Here is how: 1. You need to register a content observer (not broadcast receiver) contentResolver.registerContentObserver(Uri.parse(content://gmail- ls), true, _gmailObserver); _gmailObserver is your own ContentObserver object. 2. ContentObserver.onChange is going

[android-developers] Re: BroadcastReceiver for incoming Gmail?

2009-11-08 Thread moneytoo
Gmail does not broadcast any intent on incoming e-mail. In other thread there is a post of a Adnroid developer talking about currently not planning adding this feature. On Nov 7, 11:06 pm, gnugu rho...@gmail.com wrote: Hello, Does anybody know how to setup BroadcastReceiver's action and intent-

[android-developers] Re: BroadcastReceiver for incoming Gmail?

2009-11-08 Thread moneytoo
http://code.google.com/p/android/issues/detail?id=3668 On Nov 7, 11:06 pm, gnugu rho...@gmail.com wrote: Hello, Does anybody know how to setup BroadcastReceiver's action and intent- filter so it can be invoked when Gmail is received? I thing CubeWorks does it, so it's not entirely

[android-developers] Re: BroadcastReceiver for incoming Gmail?

2009-11-08 Thread gnugu
Thanks moneytoo for your answer. How does Google themselves put the notification on the status bar then? I'm sure there is something. Is there a way to catch the intents flying around? To sniff it out? On Nov 8, 7:56 am, moneytoo m...@seznam.cz wrote: