How big is big? Also, this design seems that it might indicate something in your app is simply incorrectly designed. I can't think of too many situations when this would pop up, and you can't do something better, so if you included what the use for these lists was...
For example, you could put these as a database, then access information when needed, or split up into multiple files, smart use of caching could help you bump up perf, etc.., but like I said, you can't really get much better advice until you give a little bit of info as to why you need these "huge things sitting statically in memory all the time." kris On Wed, Jan 18, 2012 at 8:11 PM, Dancing Fingers <[email protected]> wrote: > Hi guys, > My app uses 4 ArrayLists which I want to be accessible to all > activities so I decided to load them into an Application object. > Three out of the 4 work fine but the forth won't work. It's the > largest Arraylist and it also happens to be a complex Arraylist of > String, each Arraylist contains another Arraylist of Strings. But > this complex ArrayList structure works fine with char's. > > Has any one run into a memory limitation issue with the Application > object, or any issues with ArrayList's of strings? > > Free advice is appreciated. > > Chris > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

