Android - ActionBar 下方不需要的 space

Android - Unwanted space underneath ActionBar

我使用带有容器的 MainActivity 来存放我的片段。 MainActivitie 的 XML 包含一个工具栏,代码如下:

<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/c_green"
    android:id="@+id/toolbar"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    app:title="@string/app_name"
    android:contentInsetLeft="10dp"
    android:contentInsetStart="10dp"
    app:contentInsetLeft="10dp"
    android:layout_margin="0dp"
    android:padding="0dp">
    <ImageView
        android:id="@+id/logo"
        android:layout_width="100dp"
        android:layout_height="35dp"
        android:layout_gravity="left" />
</android.support.v7.widget.Toolbar>

问题如下: 在我所有的片段上,我在 ActionBar 下方都有这个不需要的额外 space,如图所示。

在 recyclerView 上,您可以看到 CardViews 在白色下方滑动space。我猜想 ActionBar 有问题。 我尝试添加填充 0dp 和边距 0dp,但是 none 改变了任何东西。

提前致谢!

我发现不用

android:layout_marginTop="?attr/actionBarSize"

在我的片段中,使用

android:layout_marginTop="@dimen/myActionBar_height"

    <dimen name="myActionBar_height">48dp</dimen>

修复了额外的 space。 但是我觉得这不是一个好的解决方案。

问题似乎是 margin top 多了 10dp。