Android AppBarLayout

Android AppBarLayout

1 is what I want to archive, but what it looks like atm is 2

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    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:orientation="vertical"
    android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:fitsSystemWindows="true">
        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
            app:title="Edit Profile"
            app:titleTextColor="@android:color/white" />
    </android.support.design.widget.AppBarLayout>


    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">
          .....
    </android.support.v4.widget.NestedScrollView>

</android.support.design.widget.CoordinatorLayout>

我几乎尝试了 Stack Overflow 上的所有解决方案,

例如

fitsSystemWindows="true"

<item name="android:windowDrawsSystemBarBackgrounds">true</item>

还有更多..

我觉得不应该这么难。 任何建议或示例项目都将受到赞赏。

Sebastian 我之前遇到过同样的问题,在修改了 fitssystemwindows 属性后,问题得到解决。我不完全记得我做了什么,甚至不知道那个属性是做什么的。所以你也可以尝试不同的组合 adding/removing fitssystemwindows。例如,将其从 appbarlayout 中删除,看看会发生什么。

我刚刚弄明白了,但我不知道怎么做。

我尝试了所有可能的方法android:fitsSystemWindows="true" 之前的组合但是none的组合有效,但是在我改变了一堆布局之后,它突然固定了。

我跟踪了每一行代码的变化, 结果我应该从 AppBarLayout.

中删除 android:fitsSystemWindows="true" 选项

这真的很奇怪,因为我之前尝试了大约3次完全相同的事情,但它对布局没有任何影响。

我认为这可能又是一个缓存问题或令人讨厌的 Android Studio 中的一些错误..

如果有人和我有类似的问题,我会推荐 1. clean project 2. remove the layout entirely and put it back 查看实际更改

我在这个问题上浪费了大约 5 个小时,课程只是 "don't trust Android Studio"