API 11 FLAG_ACTIVITY_CLEAR_TASK FLAG_ACTIVITY_NEW_TASK Intent .
onBackPressed(),
> This launch mode can also be used to
FLAG_ACTIVITY_NEW_TASK: , , . , , .
, B :
Intent intent = new Intent(A.this, B.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
finish();