[android-developers] Re: Updating UI from external

2011-08-25 Thread Ash
Hi Matthew, Thanks for the sample code. I will definitely try this out. Cheers -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send em

[android-developers] Re: Updating UI from external

2011-08-24 Thread Matthew Patience
Why couldn't a callback be used here? in your myObserver class create an interface for your callback: --- public OnConnectListener listener; public void setOnConnectListener(OnConnectListener listener) { this.listener = listener; }