Re: [android-developers] Re: How to implement a Broadcast Receiver

2011-07-25 Thread Mark Murphy
On Sun, Jul 24, 2011 at 9:05 PM, lbendlin l...@bendlin.us wrote: Mark,  does this mean I could have a functionality that would start (the rest of) my app when the manifested receiver gets the broadcast?  In my case users are asking me to start my app when they connect their A2DP speakers. If

Re: [android-developers] Re: How to implement a Broadcast Receiver

2011-07-24 Thread lbendlin
Mark, does this mean I could have a functionality that would start (the rest of) my app when the manifested receiver gets the broadcast? In my case users are asking me to start my app when they connect their A2DP speakers. -- You received this message because you are subscribed to the Google

[android-developers] Re: How to implement a Broadcast Receiver

2011-07-08 Thread Steven Bruce
Hi Mark. Thanks a lot. That worked a treat. I have since changed my code so I've now dynamically created a BroadcastReceiver in my main class (using registerReceiver) instead of the manifest file as its more accessible to my BluetoothTest activity. Having it locked away in a seperate class seemed

Re: [android-developers] Re: How to implement a Broadcast Receiver

2011-07-08 Thread Mark Murphy
On Fri, Jul 8, 2011 at 5:26 PM, Steven Bruce stevebruc...@gmail.com wrote: Thanks a lot. That worked a treat. I have since changed my code so I've now dynamically created a BroadcastReceiver in my main class (using registerReceiver) instead of the manifest file as its more accessible to my