Como destruir a atividade no Android

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