Re: [android-developers] Re: Process in Android

2010-01-12 Thread Kevin Duffey
Yes..my bad. Ugh. I still don't have it all memorized yet. lol. On Tue, Jan 12, 2010 at 8:38 PM, kavitha sunil wrote: > onStart() does not have Bundle argument, are you talking about > onCreate(Bundle saveinstance) > > > On Wed, Jan 13, 2010 at 10:04 AM, Kevin Duffey wrote: > >> As Dianne posted.

Re: [android-developers] Re: Process in Android

2010-01-12 Thread kavitha sunil
onStart() does not have Bundle argument, are you talking about onCreate(Bundle saveinstance) On Wed, Jan 13, 2010 at 10:04 AM, Kevin Duffey wrote: > As Dianne posted.. android takes care of destroying apps for you if you > don't do it yourself.. when memory/resources is needed. Unlike any other

Re: [android-developers] Re: Process in Android

2010-01-12 Thread Kevin Duffey
As Dianne posted.. android takes care of destroying apps for you if you don't do it yourself.. when memory/resources is needed. Unlike any other platform (that I know of) for phones/tablets, Android is multi-process.. in that you can run many programs at once. Unlike a computer OS tho, only the top

[android-developers] Re: Process in Android

2010-01-12 Thread Kumar Bibek
Even I was confused as to why the process should be running even after I exited my app. But then I realized that I dont have to care about that.' Kumar Bibek http://tech-droid.blogspot.com On Jan 13, 9:07 am, Dianne Hackborn wrote: > That is working as intended, as described here: > > http://dev

Re: [android-developers] Re: Process in Android

2010-01-12 Thread kavitha sunil
Inspite of doing that(which is what back key does also), if you see the process, the process is not killed. It will be still running. On Wed, Jan 13, 2010 at 8:45 AM, tstanly wrote: > when you leave to b from a, > if you want to close a activity, > > then you can write the code in the onDestroy

[android-developers] Re: Process in Android

2010-01-12 Thread tstanly
when you leave to b from a, if you want to close a activity, then you can write the code in the onDestroy such as: onDestroy(){ a.this.finish(); } On 1月13日, 上午11時08分, Android Developer wrote: > Hi, > > I have an application which has one activity. The application is > launched. When i say ba