我在xamarin.android中创建了一个应用程序,它使用户使用xamarin.auth和OAuth2登录谷歌。问题是,当我启动登录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));
答案 0 :(得分:0)
设置<name="android:windowTranslucentStatus">true</item>
不仅会将状态栏设置为半透明,还会将状态栏显示在状态栏后面。
我建议您删除android:windowTranslucentStatus
或将值设置为false并删除<item name="android:statusBarColor">@android:color/transparent</item>
,因为它会将状态栏设置为透明。
客户样式代码应如下所示:
<?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</item>
,请使用minimun sdk 21.此功能已在上面的Android API 21中添加。
屏幕显示如下: