FrameLayout 与 NestedScrollView 的高度不匹配

FrameLayout does not match the height of NestedScrollView

我在 NestedScrollView 中有一个 FrameLayout,因为

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

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#000000">

但是 FrameLayout 没有填充 NestedScrollView 的高度。我该如何解决这个问题?

检查此解决方案
使用 fillViewport="true" 如果需要,此属性会导致滚动视图的子视图扩展到 ScrollView 的高度。当child高于ScrollView时,该属性无效。

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