答案 0 :(得分:5)
尝试在stlye.xml中首先定义样式
//NoActionBar
<style name="AppTheme.NoActionBar">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
</style>
比在mainfest文件中声明类样式如下
<activity
android:name="youractivityName"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar"
/>
答案 1 :(得分:0)
如果您在App类中使用new NavigationPage (new YourPage())
,请确保将其更改为new YourPage()
。或者,如果您是在触发事件时进入该页面的,则不要像Navigation.PushAsync(new NavigationPage ( new YourPage())
这样使用它。改为使用Navigation.PushAsync( new YourPage())