【发布时间】:2016-03-01 22:42:54
【问题描述】:
我在 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 的高度。我该如何解决这个问题?
【问题讨论】:
-
我认为在框架布局中设置重力 = 中心或其他
-
执行
android:layout_gravity="center"或android:layout_gravity="center|fill_vertical"似乎不起作用 -
android:fillViewport="true"check this 添加到android.support.v4.widget.NestedScrollView
标签: android android-layout android-framelayout nestedscrollview