how to destroy activity in android

Solutions on MaxInterview for how to destroy activity in android by the best coders in the world

showing results for - "how to destroy activity in android"
Nolhan
25 Mar 2017
1Intent intent = new Intent(this, NextActivity.class);
2startActivity(intent);
3finish();
4