Re: [android-developers] Broadcast Receiver without Activity.

2010-02-12 Thread Mark Murphy
> A WAP PUSH (Broadcast)receiver basically doesn't need any UI. It is a > silence application which handles the Push messages based on actions/ > mimetype without needing any intreaction with user, > I've tried to test it in a SMS receiver by removing the Activity from > the project and it stopped

Re: [android-developers] Broadcast Receiver without Activity.

2010-02-12 Thread Rogério de Souza Moraes
Hi askPrins, you can implement this using a service class instead of an activity class. So you don't need the UI. Regards, Rogerio 2010/2/12 askPrins > A WAP PUSH (Broadcast)receiver basically doesn't need any UI. It is a > silence application which handles the Push messages based on actions/

[android-developers] Broadcast Receiver without Activity.

2010-02-12 Thread askPrins
A WAP PUSH (Broadcast)receiver basically doesn't need any UI. It is a silence application which handles the Push messages based on actions/ mimetype without needing any intreaction with user, I've tried to test it in a SMS receiver by removing the Activity from the project and it stopped receiving