[android-developers] Re: How to exit the application completely from any screen

2013-01-07 Thread Bipin Shrestha
I have also got same problem I tried your clue too but it seems to close only one process id and close current page. And not the whole application. It only get backs the page and but actually application does not goes forward. On Saturday, September 13, 2008 5:28:23 PM UTC+5:45, Pau wrote:

[android-developers] Re: How to exit the application..?

2011-01-30 Thread Mark Carter
I have a legitimate reason for wanting to kill the JVM. There appears to be a bug when instantiating the TextToSpeech class. You can read about it here: http://stackoverflow.com/questions/4819330/texttospeech-oninitlistener-oninitint-being-called-continuously The listener is repeatedly called

Re: [android-developers] Re: How to exit the application..?

2011-01-30 Thread Narendra Bagade
use Runtime.getRuntime.exit(code); On Mon, Jan 31, 2011 at 12:55 PM, Mark Carter mjc1...@googlemail.comwrote: I have a legitimate reason for wanting to kill the JVM. There appears to be a bug when instantiating the TextToSpeech class. You can read about it here:

Re: [android-developers] Re: How to exit the application..?

2011-01-10 Thread 20plus10 30
Use this: This will stop the proccess: android.os.Process.killProcess(android.os.Process.myPid()); /Maali 2011/1/10 dilu discover.dile...@gmail.com Even I tried with System.exit(0). But its not working .So question is that how to completly exit the application if we want to do . On Dec

Re: [android-developers] Re: How to exit the application..?

2011-01-10 Thread Kostya Vasilyev
And then if you have a Service component, be prepared for it to stop working after a period of time. 10.01.2011 14:04, 20plus10 30 пишет: Use this: This will stop the proccess: android.os.Process.killProcess(android.os.Process.myPid()); /Maali 2011/1/10 dilu discover.dile...@gmail.com

Re: [android-developers] Re: How to exit the application..?

2011-01-10 Thread 20plus10 30
It wil stop the application ttally. It kills its own proccess. 2011/1/10 Kostya Vasilyev kmans...@gmail.com And then if you have a Service component, be prepared for it to stop working after a period of time. 10.01.2011 14:04, 20plus10 30 пишет: Use this: This will stop the proccess:

[android-developers] Re: How to exit the application..?

2011-01-10 Thread dilu
Thanks to everyone who all shared their idea. I used Abhilash'c link i.e. http://androidsnips.blogspot.com/2010/08/finish-application.html Its working perfectly for me. Regards Dileep On Jan 10, 4:27 pm, 20plus10 30 20plu...@gmail.com wrote: It wil stop the application ttally. It kills its own

Re: [android-developers] Re: How to exit the application..?

2011-01-10 Thread Dianne Hackborn
On Mon, Jan 10, 2011 at 3:27 AM, 20plus10 30 20plu...@gmail.com wrote: It wil stop the application ttally. It kills its own proccess. It does kill the process, but that does not stop the application totally. Don't use this. -- Dianne Hackborn Android framework engineer hack...@android.com

[android-developers] Re: How to exit the application..?

2011-01-10 Thread jotobjects
On Jan 10, 11:17 am, Dianne Hackborn hack...@android.com wrote: On Mon, Jan 10, 2011 at 3:27 AM, 20plus10 30 20plu...@gmail.com wrote: It wil stop the application ttally. It kills its own proccess. It does kill the process, but that does not stop the application totally.  Don't use this.

Re: [android-developers] Re: How to exit the application..?

2011-01-10 Thread Dianne Hackborn
On Mon, Jan 10, 2011 at 6:15 PM, jotobjects jotobje...@gmail.com wrote: In the usual case of the Application only having one Process what part of the application would not be stopped? All of the state about the app is kept -- other activities the user has visited, running services, etc. The

[android-developers] Re: How to exit the application..?

2011-01-10 Thread dilu
@Dianne, But I think finish() kills only one activity at a time.With in a application if we want to close the application/kill the application totally from any activity then what to do? Regards Dileep On Jan 11, 8:04 am, Dianne Hackborn hack...@android.com wrote: On Mon, Jan 10, 2011 at 6:15

Re: [android-developers] Re: How to exit the application..?

2011-01-10 Thread Kumar Bibek
Finish is the recommended way of closing Activites. You should be using only this to exit your Activities. The OS will take care of the Application as a whole. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Jan 11, 2011 at 7:45 AM, jotobjects jotobje...@gmail.com

Re: [android-developers] Re: How to exit the application..?

2011-01-10 Thread kavitha b
Another way is to kill the process explicitly using Application Process Id. On Tue, Jan 11, 2011 at 10:54 AM, Kumar Bibek coomar@gmail.com wrote: Finish is the recommended way of closing Activites. You should be using only this to exit your Activities. The OS will take care of the

Re: [android-developers] Re: How to exit the application..?

2011-01-10 Thread Kumar Bibek
This is going to be disabled in future releases (As far as I know). Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Jan 11, 2011 at 11:03 AM, kavitha b kkavith...@gmail.com wrote: Another way is to kill the process explicitly using Application Process Id. On Tue,

Re: [android-developers] Re: How to exit the application..?

2011-01-10 Thread kavitha b
Ohh,is it?I was not knowing that. But this procedure I have used in my previous app. On Tue, Jan 11, 2011 at 11:06 AM, Kumar Bibek coomar@gmail.com wrote: This is going to be disabled in future releases (As far as I know). Kumar Bibek http://techdroid.kbeanie.com

Re: [android-developers] Re: How to exit the application..?

2011-01-10 Thread Dianne Hackborn
No no no no. (a) Using Process.kill() is NOT the same as finishing an activity. At all. In any way shape or form. Don't mix the two. You want to finish your UI? Call finish(). A process is not an application. Don't take that association from other platforms, that is not how it works on

[android-developers] Re: How to exit the application..?

2011-01-10 Thread Stephan Wiesner
 It comes back to designing Apps that do not need to be stopped. Let me guess, you do not own a Samsung Galaxy S I9000? I was constantly switching to the taskmanager trying to kill processes, uninstalling all apps that ran in the background, etc until the 2.2.1 patch. . . Android might kill a

[android-developers] Re: How to exit the application..?

2011-01-09 Thread dilu
Even I tried with System.exit(0). But its not working .So question is that how to completly exit the application if we want to do . On Dec 29 2010, 11:10 am, Dianne Hackborn hack...@android.com wrote: No, it doesn't, it exits the process, but leaves whatever activity stack is being maintained

Re: [android-developers] Re: How to exit the application..?

2011-01-09 Thread Kumar Bibek
There is no concept of Exiting an application. You app should just call finish whenever you want to close your app. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Mon, Jan 10, 2011 at 12:12 PM, dilu discover.dile...@gmail.com wrote: Even I tried with System.exit(0). But

Re: [android-developers] Re: How to exit the application..?

2011-01-09 Thread Abhilash baddam
Hi Dilu, check the below link definitely it'l be useful for u.. http://androidsnips.blogspot.com/2010/08/finish-application.html On Mon, Jan 10, 2011 at 12:12 PM, dilu discover.dile...@gmail.com wrote: Even I tried with System.exit(0). But its not working .So question is that how

[android-developers] Re: How to exit the application..?

2011-01-09 Thread dilu
I know the android architecture.According to that there is no exit application option recommended... But if we have to do then how to do? I am working on a webservice based application.In case if due to some reason application is not able to connect to the service then I want to exit the

Re: [android-developers] Re: How to exit the application..?

2011-01-09 Thread Kumar Bibek
Calling finish, essentially exits your app. Whatever you need to initialize for your next start of your application, can be againd done in the onCreate or onResume method. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com 2011/1/10 dilu discover.dile...@gmail.com I know the

[android-developers] Re: How to exit the application..?

2011-01-09 Thread Sarwar Erfan
On Monday, January 10, 2011 12:52:25 PM UTC+6, dilu wrote: ... if due to some reason application is not able to connect to the service then I want to exit the application completly so tht he can restart the app again. If you think that the some reason of not being able to connect to

[android-developers] Re: How to exit the application..?

2010-12-28 Thread Sandeep N M
System.exit(0); Gets you out of anywhere to home screen :). Regards Sandeep On Dec 27, 4:43 pm, Manoj Maurya manojk.mau...@gmail.com wrote: you have to call finish() whenever u want to exit. Thanks Manoj Kumar Maurya any help please... 2010/12/27 Abhilash baddam

Re: [android-developers] Re: How to exit the application..?

2010-12-28 Thread Abhilash baddam
But system.exit(0); is not working..? 2010/12/28 Sandeep N M donks...@gmail.com System.exit(0); Gets you out of anywhere to home screen :). Regards Sandeep On Dec 27, 4:43 pm, Manoj Maurya manojk.mau...@gmail.com wrote: you have to call finish() whenever u want to exit. Thanks

Re: [android-developers] Re: How to exit the application..?

2010-12-28 Thread Dianne Hackborn
No, it doesn't, it exits the process, but leaves whatever activity stack is being maintained by the system. 2010/12/28 Sandeep N M donks...@gmail.com System.exit(0); Gets you out of anywhere to home screen :). Regards Sandeep On Dec 27, 4:43 pm, Manoj Maurya manojk.mau...@gmail.com wrote:

[android-developers] Re: How to exit the application..?

2010-12-27 Thread viktor
You can set for every Activities android:launchMode=singleTask ; And if you go Home, you always restart an Activity with onCreate state. On 27 Грд, 10:40, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi ,      I am new to android. How can we exit from application...For example

Re: [android-developers] Re: How to exit the application..?

2010-12-27 Thread Abhilash baddam
Hi viktor, What your saying is if i use finish(); method in my code, is i have to use android:launchMode=singleTask in manifest file right? 2010/12/27 viktor victor.scherb...@gmail.com You can set for every Activities android:launchMode=singleTask ; And if you go Home, you

Re: [android-developers] Re: How to exit the application..?

2010-12-27 Thread Abhilash baddam
any help please... 2010/12/27 Abhilash baddam abhilash.androiddevelo...@gmail.com Hi viktor, What your saying is if i use finish(); method in my code, is i have to use android:launchMode=singleTask in manifest file right? 2010/12/27 viktor victor.scherb...@gmail.com You can

Re: [android-developers] Re: How to exit the application..?

2010-12-27 Thread Manoj Maurya
you have to call finish() whenever u want to exit. Thanks Manoj Kumar Maurya any help please... 2010/12/27 Abhilash baddam abhilash.androiddevelo...@gmail.com Hi viktor, What your saying is if i use finish(); method in my code, is i have to use android:launchMode=singleTask in manifest

[android-developers] Re: How to exit the application completely from any screen

2008-09-13 Thread Romain Guy
There is no need to do this. The user can just press the Home key to exit the app. On Fri, Sep 12, 2008 at 6:27 PM, elephantbug [EMAIL PROTECTED] wrote: Hi, Is there a way to exit the application completely at any place? call finish() will only exit the current activity. I tried to

[android-developers] Re: How to exit the application completely from any screen

2008-09-13 Thread plusminus
otherwise, just grab a flag in onActivityResult(...) of the parent-activity and call .finish() also. Works really smooth with me. Regards, plusminus http://anddev.org # Worlds largest Android Development Community / Tutorials On Sep 13, 3:58 am, Romain Guy [EMAIL PROTECTED] wrote: There is

[android-developers] Re: How to exit the application completely from any screen

2008-09-13 Thread Pau
Hi, if you kill the application completely: int pid = android.os.Process.myPid(); android.os.Process.killProcess(pid); On 13 sep, 09:58, Romain Guy [EMAIL PROTECTED] wrote: There is no need to do this. The user can just press the Home key to exit the app. On Fri, Sep 12, 2008 at 6:27

[android-developers] Re: How to exit the application completely from any screen

2008-09-13 Thread elephantbug
but our app wants to prevent user from continuing use the app. Maybe freeze the app can also do the trick, which forces user to use home dutton. There should be a way to auto exit , just do not know how. Anyone? On Sep 13, 12:58 am, Romain Guy [EMAIL PROTECTED] wrote: There is no need to do