Re: [android-developers] Observing a Singleton List from an Activity

2011-10-12 Thread TreKing
On Wed, Oct 12, 2011 at 6:09 AM, Boozel wrote: > Any ideas where i can find some example code of this? Google "Observer pattern example java" ? - TreKing

Re: [android-developers] Observing a Singleton List from an Activity

2011-10-12 Thread Boozel
Any ideas where i can find some example code of this? -- 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 email to android-developers+

Re: [android-developers] Observing a Singleton List from an Activity

2011-10-11 Thread TreKing
On Tue, Oct 11, 2011 at 2:20 PM, Boozel wrote: > > If So how do i get my main activity to observe my singleton list > that extends Observable? > If you already extend Observable then it follows you would need an Oberver, which in this case would be your Activity, from what you described. ---