11

我在 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 的高度。我该如何解决这个问题?

4

1 回答 1

53

检查此解决方案如果需要,
使用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">
于 2015-11-27T17:56:07.243 回答