[android-developers] Re: Hook event listeners for activity/application lifecycle events

2011-11-04 Thread Doug
On Nov 2, 8:54 pm, Miles miles_christ...@yahoo.com wrote: So is there a way to hook event listeners for lifecycle events? Not really. You can write your own subclass of Activity that accepts a listener for events and hook it all up yourself. Then you can have all your actual activities that

Re: [android-developers] Re: Hook event listeners for activity/application lifecycle events

2011-11-04 Thread John Davis
On Fri, Nov 4, 2011 at 3:30 AM, Doug beafd...@gmail.com wrote: On Nov 2, 8:54 pm, Miles miles_christ...@yahoo.com wrote: So is there a way to hook event listeners for lifecycle events? Not really. You can write your own subclass of Activity that accepts a listener for events and hook it all

[android-developers] Re: Hook event listeners for activity/application lifecycle events

2011-11-02 Thread Belvedere Computer Services
yes, correct way to do it is with interfaces which are documented copiously ~ I just read in the developer docs that Interfaces are the correct way to avoid wait's and blocks On Nov 2, 10:54 pm, Miles miles_christ...@yahoo.com wrote: Hi, Is there any way to to listen for activity/application