I read from a RSSfeed and create an object of that feed. As this takes time I want to have it read the feed during the spash screen. After the splash screen loads the Main Menu appears which extends TabActivity, after clicking a tab the next activity which which extends listActivity appears.

What is the best way to get the object from the spash screen to the 3rd Activity screen which extends the listActivity?

link|improve this question

feedback

1 Answer

you can start a service that can fetch the object, store it in the memory (or database, file, etc) and then use it whenever you want!

Hope this helps!

link|improve this answer
Did it helped you? Any luck? – Dimitris Makris Dec 17 '11 at 16:56
Nah, What I did was create a control class and made it static. Instantiated it in the splash screen and referenced it later. Thanks tho – Robert de Klerk Dec 17 '11 at 21:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.