tags:

views:

65

answers:

1

Hello, I am wondering how I would save data in my application. What I need to save is a Drawable, String, and possible an Intent. I need to save/cache these because it takes my app about 5 seconds to load all this data each time, and thats not very user friendly.

Thanks in advance,

A: 

Put your data in a database, and read/write to there. Use a background thread possibly an AsyncTask or Service to update the database.

Pentium10
Can I store drawables in a database?
Enigma Development