如何删除窗口顶部的额外填充?

时间:2016-11-27 10:04:11

标签: android-layout xamarin xamarin.android xamarin.forms

当我在Android上运行我的应用程序时,我有这个奇怪的填充顶部。在iOS上它看起来像预期的那样。

当我检查所有方向的填充为0时。我最后的想法是,它可能与我的一些布局有关,但我不明白它是什么。

工具栏布局:

case class Cons[+A](head: A, tail: List[A]) extends List[A]
case object Nil extends List[Nothing]

标签布局

<?xml version="1.0" encoding="UTF-8"?>
<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:minHeight="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    app:layout_scrollFlags="scroll|enterAlways"/>

我正在使用Xamarin.Form的MasterDetailPage,我的页面是ContentPage。 此页面组合是否会在Android上创建此错误?请帮我解决。

以下是我看到的截图:

[Example] 1

1 个答案:

答案 0 :(得分:0)

您可以在命名空间下方的Android解决方案(MainActivity.cs)中更改大量设置。

例如:

 [Activity(Theme = "@style/AppStyle.Light", Label = "ProjectName", MainLauncher = false,
    ScreenOrientation = ScreenOrientation.Portrait, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]