Re: [android-developers] Best way to do this

2011-04-07 Thread Kristopher Micinski
I think I'd prefer storing them in a database as opposed to a file. How would you store them in a file? Something like comma separated values or xml or something? You can avoid all that parsing code and use a database instead. This also might make it easier if you want to add more strings for you

[android-developers] Best way to do this

2011-04-07 Thread arudzki
I'ld like to make an app with a new inspirational message per day. Whats the best way to store the 365 strings so that they can be accessed? A database or a string list in a file? I'm looking for something that will be easy to code and easy to update (separate inspirational packs). I'm new to t