タイトルテーマで変更しないでください。以前のバージョンuiにも対応します。 OnCreate
また
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle); //
Window.RequestFeature(WindowFeatures.NoTitle); //This will Hide the title Bar
}
した後、あなたがすることによってあなたはどのように使用できるか
<style name="AppTheme" parent="AppTheme.Base"/>
<style name="AppTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">@color/colorPrimary</item>
<!-- colorPrimaryDark is used for the status bar -->
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<!-- colorAccent is used as the default value for colorControlActivated,
which is used to tint widgets -->
<item name="colorAccent">@color/colorAccent</item>
</style>
、ここでカスタムスタイルを作成することを達成することができ、あなたのコンストラクタ
答えを更新@phadaphunk。私は頭の上にあるものにしか答えませんでした。 :P –
ありがとう!これは私の問題を完全に解決しました。 – phadaphunk
イブラヒムの 'NavigationPage.SetHasNavigationBar(this、false);で答えると' better better – nidheeshdas