1

有问题。如果我在 android 设备上按回,它会返回预览端,但它会删除选项卡的工具栏,有人知道那可能是什么吗?

这就是我导航到页面的方式。哪个工作,

            this.Navigation.PushAsync(new ProfilPage())
                .ContinueWith(t => { this.Navigation.RemovePage(this); });

然后当我按下后退按钮时,它会返回,但删除网站工具栏,

有人对此有任何了解吗?谢谢你的时间

4

1 回答 1

0

这就是您导航的方式,尝试导航NavigationPage

this.Navigation.PushAsync(new NavigationPage(ProfilPage()) )
.ContinueWith(t => { this.Navigation.RemovePage(this); });
于 2017-09-21T09:11:51.817 回答