FrameLayout与NestedScrollView的高度不匹配

时间:2015-11-27 17:28:06

标签: android android-layout android-framelayout 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的高度。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:40)

检查此解决方案
使用fillViewport="true" 如果需要,此属性会使滚动视图的子项扩展到ScrollView的高度。当孩子高于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">