I have multiple pages branching of a title page, and when a back button is pressed on the branch pages it recalls the title page with:
Intent backIntent = new Intent(Options.this, TitlePage.class);
Options.this.startActivity(backIntent);
Then destroys with:
protected void onPause() {
super.onPause();
finish();
}
The problem is each time this is called it overlays the title page. I need only one title page to exist without destroying all of them with the finish() method.
Use