Re: [android-developers] prevent from reinitializing value

2012-08-13 Thread tarun sablok
Save the values you want to persist in onPause() or onStop() using SharedPreferences or you can also use onSaveInstanceState() to save your values and extract it when the activity is started the next time. On Mon, Aug 13, 2012 at 9:12 PM, TreKing wrote: > On Mon, Aug 13, 2012 at 12:28 AM,

Re: [android-developers] prevent from reinitializing value

2012-08-13 Thread TreKing
On Mon, Aug 13, 2012 at 12:28 AM, Sadhna Upadhyay wrote: > can someone tel me how to prevent from reinitializing value when activity > is re called i mean You need to explain more clearly exactly what you're trying to do.