I've been trying to get a couple of Forms pages set up under Android (for the moment, iOS to follow). The main page has a single ToolBarItem that is set to show the second page when clicked. When the toolbar button is clicked, the new page is shown, but the toolbar still shows the ToolBarItems from the first page, even if I call this.ToolbarItems.Clear()
. The icons for the pages are also ignored (unless I put a call to NavigationPage.SetTitleIcon(this, this.Icon)
in each page's constructor).
Is this expected behaviour?