Re: [android-developers] Multiple IntentServices for one Intent

2012-05-17 Thread Dianne Hackborn
Sorry you can't. You should basically never call startService() or bindService() with an implicit intent; you will get essentially random behavior in the service that is found if there are multiple services that match the intent. On Wed, May 16, 2012 at 9:32 PM, phoku mboeh...@fh-muenster.de

Re: [android-developers] Multiple IntentServices for one Intent

2012-05-17 Thread Matthias Böhmer
so, is there kind of a best practice so solve this? On May 16, 2012 11:24 PM, Dianne Hackborn hack...@android.com wrote: Sorry you can't. You should basically never call startService() or bindService() with an implicit intent; you will get essentially random behavior in the service that is

Re: [android-developers] Multiple IntentServices for one Intent

2012-05-17 Thread Mark Murphy
On Thu, May 17, 2012 at 2:26 AM, Matthias Böhmer matboeh...@googlemail.com wrote: so, is there kind of a best practice so solve this? You would start by explaining why you want to have multiple IntentServices listening to the same action getting fired when I call context.startService(...).

Re: [android-developers] Multiple IntentServices for one Intent

2012-05-17 Thread Dianne Hackborn
On Wed, May 16, 2012 at 11:26 PM, Matthias Böhmer matboeh...@googlemail.com wrote: so, is there kind of a best practice so solve this? Er... the best practice is to be explicit about the service component you want to interact with. If you just want to blast this to all services, then you

[android-developers] Multiple IntentServices for one Intent

2012-05-16 Thread phoku
Hi! I want to have multiple IntentServices listening to the same action getting fired when I call context.startService(...). How can I do that? Currently only one out of some IntentServices receives the Intent. -- You received this message because you are subscribed to the Google Groups