Recyclerview 高度截断
Recyclerview Height cutoff
这是我的布局结构:
<ScrollView
-height - match>
<CoordinatorLayout
-height - wrap>
<AppbarLayout
-height - wrap>
<CollapsingToolbarLayout
-height - wrap>
<ConstraintLayout>
//min height is set dynamically.
</ConstraintLayout>
</CollapsingToolbarLayout>
</AppbarLayout>
<RecyclerView
->scroll behaviour
->height-wrap/>
<CoordinatorLayout>
</ScrollView>
因为存在滚动视图,所以我无法在折叠工具栏布局中应用最小高度。有什么办法可以调整高度(这里我的回收站视图被截断了)
将此 属性 添加到 recylerview app:layout_constrainedHeight="true"
。
详情请看下面
这是我的布局结构:
<ScrollView
-height - match>
<CoordinatorLayout
-height - wrap>
<AppbarLayout
-height - wrap>
<CollapsingToolbarLayout
-height - wrap>
<ConstraintLayout>
//min height is set dynamically.
</ConstraintLayout>
</CollapsingToolbarLayout>
</AppbarLayout>
<RecyclerView
->scroll behaviour
->height-wrap/>
<CoordinatorLayout>
</ScrollView>
因为存在滚动视图,所以我无法在折叠工具栏布局中应用最小高度。有什么办法可以调整高度(这里我的回收站视图被截断了)
将此 属性 添加到 recylerview app:layout_constrainedHeight="true"
。
详情请看下面