设置RecyclerView最大高度

通过ConstraintLayout设置
build.gradle中引入constraintlayout库

    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'

设置RecyclerView的父布局为ConstraintLayout,RecyclerView的高度设置为0dp,添加layout_constraintHeight_min和layout_constraintHeight_max属性,指定相应的高度

    

这样设置如果RecyclerView包含多个item,其高度最高只显示230dp,滑动可以查看其他item。

你可能感兴趣的:(android)