xamarinフォームでAndroid上で上部のバーを削除します。私はを含むいくつかの解決策を試してみました
<item name="android:actionBarSize">0dp</item>
または
var activity = (Activity)Forms.Context;
this.Window.AddFlags(WindowManagerFlags.Fullscreen);
または
RequestWindowFeature(WindowFeatures.NoTitle);
や活動の文字列の
Theme = "@style/MainTheme.FullScreen"
しかし、私は、歌詞、電池時間などを取り除いたり、解決してくれる解決策を見つけることができませんでしたが、私はトップバーと同じままです。どうすればそれを完全に削除できますか? iOSの
私が追加しました:
UIApplication.SharedApplication.SetStatusBarHidden(true, true);
と作品を...しかし、アンドロイド、彼はいまいましい私を作っている:) ソリューションを?
があなたの特定の活動のためのあなたのテーマにこれら二つの項目を追加します。
は私が
私はXamarinフォーラムでこの同様の質問に答え
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<style name="MainTheme" parent="MainTheme.Base">
</style>
<!-- Base theme applied no matter what API -->
<style name="MainTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<!--If you are using revision 22.1 please use just windowNoTitle. Without android:-->
<item name="windowNoTitle">true</item>
<!--We will be using the toolbar so no need to show ActionBar-->
<item name="windowActionBar">false</item>
<!-- Set theme colors from http://www.google.com/design/spec/style/color.html#color-color-palette -->
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">#2196F3</item>
<!-- colorPrimaryDark is used for the status bar -->
<!--<item name="colorPrimaryDark">#0084CA</item>-->
<!-- colorAccent is used as the default value for colorControlActivated
which is used to tint widgets -->
<item name="colorAccent">#2196F3</item>
<!-- You can also set colorControlNormal, colorControlActivated
colorControlHighlight and colorSwitchThumbNormal. -->
<item name="windowActionModeOverlay">true</item>
<!-- default -->
<item name="android:buttonStyle">@style/NoShadowButton</item>
<item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowFullscreen">true</item>
</style>
<style name="AppCompatDialogStyle" parent="Theme.AppCompat.Light.Dialog">
<item name="colorAccent">#2196F3</item>
</style>
<style name="NoShadowButton" parent="android:style/Widget.Button">
<item name="android:stateListAnimator">@null</item>
</style>
</resources>
これをあなたのアクティビティに追加しようとしましたか? ' – Krumelur
はい、動作しませんが、トップバーは非表示ではありません。[Activity(Label = "@ string/app_name"、MainLauncher = true、Theme = "@android:style/Theme.Black.NoTitleBar.Fullscreen")] –