[android-developers] Re: Storing Transient Data Across an Application

2008-04-09 Thread Soonil Nagarkar
Thanks, using Application seems to be the best way, and in the event I need to store this on disk later, I can use a ContentProvider. On Apr 9, 1:22 am, Ted Hopp <[EMAIL PROTECTED]> wrote: > If the data will only be accessed strictly within your application, > then extending Application is the ea

[android-developers] Re: Storing Transient Data Across an Application

2008-04-08 Thread Ted Hopp
If the data will only be accessed strictly within your application, then extending Application is the easiest way to go. Otherwise the Android way is to create a content provider. Storing transient data in static variables is not reliable. On Apr 8, 3:15 pm, Soonil Nagarkar <[EMAIL PROTECTED]> w

[android-developers] Re: Storing Transient Data Across an Application

2008-04-08 Thread David Given
Soonil Nagarkar wrote: [...] > I have found some information about the Application class, which > offers some of what I am looking for, but I am not sure if this is the > best method, or the proper -Android way- to accomplish this. Any > thoughts or advice? The Android Way is probably to declare a