[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 kavithasuni...@gmail.com wrote: Hi, I have an application which has one activity. The application is

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 tsai.sta...@gmail.com wrote: when you leave to b from a, if you want to close a activity, then you can write the code

[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 hack...@android.com wrote: That is working as intended, as described

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

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 andjar...@gmail.com wrote: As Dianne posted.. android takes care of destroying apps for you if you don't do it yourself.. when memory/resources is needed.

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 kavithasuni...@gmail.comwrote: onStart() does not have Bundle argument, are you talking about onCreate(Bundle saveinstance) On Wed, Jan 13, 2010 at 10:04 AM, Kevin Duffey