How can I kill an app completely from code?
I know it's possible, because when you click the exit button from Angry Birds, and then check the android task killer thing, it's gone.. but I can't get my own app to do that =/ It still hangs around and preserve's it's last state..which I don't want
I have tried this with no success:
@Override
public void onBackPressed()
{
// do something on back.
this.finish();
return;
}
Thanks for any help on this