Authenticator GetUI 在状态栏后面绘制

Authenticator GetUI draws behind status bar

我在 xamarin.android 中制作了一个应用程序,它让用户使用 xamarin.auth 和 OAuth2 登录到 google。问题是,当我启动 activity 登录 UI 时,webview 显示在状态栏后面。我的项目中有一个导航抽屉,但它的 fitsSystemWindows 设置为 true。我试过移动 fitssystemwindows,改变它等等,但没有任何效果。

提前致谢:)

-编辑-

这是屏幕截图:GetUIBehindStatusBar。我的布局:

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/drawerLayout1"
    android:fitsSystemWindows="true">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            android:minHeight="?attr/actionBarSize"
            android:background="?attr/colorPrimary" />
    </LinearLayout>
    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="280dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:headerLayout="@layout/drawerheader"
        app:menu="@menu/leftdrawermenu" />
</android.support.v4.widget.DrawerLayout>

我用这个命令来显示 UI:

StartActivity(authenticator.GetUI(this));

设置<name="android:windowTranslucentStatus">true</item>不仅可以将状态栏设置为半透明,还可以将视图显示在状态栏后面。

我建议您删除 android:windowTranslucentStatus 或设置值为 false 并删除 <item name="android:statusBarColor">@android:color/transparent</it‌​em> 因为它将设置状态栏透明。

客户样式代码如下:

<?xml version="1.0" encoding="utf-8" ?>
<resources>

  <style name="MyCustomTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
    <item name="android:windowTranslucentStatus">false</item>
  </style>
</resources>

如果要使用<item name="android:statusBarColor">@android:color/transparent</it‌​em>请使用minimun sdk 21。此功能是在上面的android API 21中添加的。

画面如下: