Comment détruire l'activité dans Android

Intent intent = new Intent(this, NextActivity.class);
startActivity(intent);
finish();
Smiling Sandpiper