tags:

views:

47

answers:

1

Hello, in my application I have a list of installed application. This list also contains the app name, icon, and intent to launch it. How would I go about saving this data so I don't have the need to load it each time.

Thanks in advance

A: 

What type of data? You could always use an Shared Preference.

http://developer.android.com/guide/topics/data/data-storage.html#pref

Nicholas
I need to preserve the string name, drawable icon, and intent. I know string would work for preferences but im not sure icon/intent's would.
Enigma Development