Talk to people.
I have an application published on Windows Phone where I navigate between pages without having to worry about the history, that is, if the user presses the Back button of Windows Phone, it automatically returns to the previous page. Similar to IE or Firefox, for example.
For clarity, suppose the Search.xaml page lists the result of a search.
In this result you have a link to the details of the registry. When the user clicks I send it to the Detail page.xaml? Id = 1
In the detail page Detail.xaml has another link to another reference. So, I redirect the user to the same page Detail.xaml? Id = 2.
And so on.
I get the same result on Android?
Remembering that in WP, I do not worry about the history of pages because it returns to the previous page without any intervention in code.
Hugs.