[android-developers] Best way to do a refresh?

2012-08-28 Thread Jungle Jim
I am writing a single-activity Android app that accesses data from various places on the internet and displays it on the screen. This data can change over time. I need to give the user the option to do a manual refresh when he chooses, in order to get the latest values. I have it set up as an

Re: [android-developers] Best way to do a refresh?

2012-08-28 Thread TreKing
On Wed, Aug 29, 2012 at 12:11 AM, Jungle Jim jjjungle...@gmail.com wrote: Is there some way to terminate the old activity and then launch it again? There is, you would call finish() on the current Activity before starting the new one, but this is very silly. Or is there a better way to do a