[android-developers] Re: global object? (singleton, intends, db)

2009-03-17 Thread Cyril Jaquier
Hi, in order to communicate with the server I need a huge global object (class with some hashmaps). all my activities (about 10) need that huge global object. wich options do I have? I am thinking about passing the object using intends and about the possibility to make the object a

[android-developers] Re: global object? (singleton, intends, db)

2009-03-17 Thread Al Sutton
Have you actually benchmarked using the database against alternatives? You may find that although you consider the database slow it's the fastest option you have when compared to serialization methods. Al. DaRolla wrote: hello, in order to communicate with the server I need a huge global