Hi all,
I use this code in my Activity to stop my activity when users press Back button,...
/***************************/
@Override
public void onPause()
{
finish();
super.onPause();
}
@Override
public void onStop()
{
finish();
super.onStop();
}
/***************************/
But when i press Back button, i still see my application thread on DDMS ( i'm using Emulator).
Does anyone explain for me what is happening?
Thanks,
NPAK




