遇到了问题。如果我按回一个Android设备,它会回到预览方面,但它会删除标签的工具栏,任何人都知道这可能是什么?
这是我导航到页面的方式。哪个工作,
this.Navigation.PushAsync(new ProfilPage())
.ContinueWith(t => { this.Navigation.RemovePage(this); });
然后,当我按下后退按钮时,它会返回,但删除站点工具栏,
有人对此有任何了解吗?谢谢你的时间
答案 0 :(得分:0)
您的导航方式,尝试使用NavigationPage
进行导航
this.Navigation.PushAsync(new NavigationPage(ProfilPage()) )
.ContinueWith(t => { this.Navigation.RemovePage(this); });