Re: [android-developers] Re: How do you force a reset just like rotation does?

2010-08-27 Thread TreKing
On Fri, Aug 27, 2010 at 10:06 PM, ArcDroid wrote: > i was reading the links you sent and you would think > that super.ondestroy(); should also do the trick, but doesn't. Any > idea why? > Because it's the base class version of the function that gets called when your activity is closed. 1 - You

[android-developers] Re: How do you force a reset just like rotation does?

2010-08-27 Thread ArcDroid
i was reading the links you sent and you would think that super.ondestroy(); should also do the trick, but doesn't. Any idea why? On Aug 27, 12:31 pm, ArcDroid wrote: > I have already searched all those links, but was expecting some basic > call that is generic to every program. > > On Aug 27, 1

Re: [android-developers] Re: How do you force a reset just like rotation does?

2010-08-27 Thread Shawn Brown
>> I have already searched all those links, but was expecting some basic call >> that is generic to every program. > > The call itself is generic, but the arguments have to specify what activity > you're talking about and only you know that (assuming you're not handling > some generic intent). gen

Re: [android-developers] Re: How do you force a reset just like rotation does?

2010-08-27 Thread TreKing
On Fri, Aug 27, 2010 at 2:31 PM, ArcDroid wrote: > I have already searched all those links, but was expecting some basic call > that is generic to every program. > The call itself is generic, but the arguments have to specify what activity you're talking about and only you know that (assuming yo

[android-developers] Re: How do you force a reset just like rotation does?

2010-08-27 Thread ArcDroid
I have already searched all those links, but was expecting some basic call that is generic to every program. On Aug 27, 12:13 pm, TreKing wrote: > On Fri, Aug 27, 2010 at 1:53 PM, ArcDroid wrote: > > thanks for the quick reply, but what args are you referring too > > http://developer.android.co

Re: [android-developers] Re: How do you force a reset just like rotation does?

2010-08-27 Thread TreKing
On Fri, Aug 27, 2010 at 1:53 PM, ArcDroid wrote: > thanks for the quick reply, but what args are you referring too > http://developer.android.com/reference/android/content/Context.html#startActivity(android.content.Intent) And if you don't know how to start your own activity: http://developer.a

[android-developers] Re: How do you force a reset just like rotation does?

2010-08-27 Thread ArcDroid
thanks for the quick reply, but what args are you referring toosorry for the novice question, but this is new turf for me private void reset() { startActivity(Intent.); finish(); } On Aug 27, 11:35 am, TreKing wrote: > On Fri, Aug 27, 2010 at 1:32 PM, ArcDroid wrote