up vote 1 down vote favorite
share [g+] share [fb]

How could I kill all the Activiies of my application ?

I try using this.finish() but it just kill one activities.

In fact, I would like when the user touch the button BACk (in only one of the activities), the application do the same as he touch HOME Button

link|improve this question

55% accept rate
5  
thx all for your answers – Nanis Aug 31 '10 at 14:50
feedback

2 Answers

up vote 2 down vote accepted

You can set android:noHistory="true" for all your activities at AndroidManifest.xml. Hence they will not place themselves onto history stack and back button will bring you to the home screen.

link|improve this answer
feedback

This has been discussed many times before. Essentially there's no easy way, and there's not supposed to be. Users press Home to quit your app (as you have pointed out).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.