Используйте ниже Recyclerview
class NonScrollRecyclerView(context: Context, attributeSet: AttributeSet) : RecyclerView(context, attributeSet) {
override fun onMeasure(widthSpec: Int, heightSpec: Int) {
val heightMeasureSpecCustom = MeasureSpec.makeMeasureSpec(
Integer.MAX_VALUE shr 2, MeasureSpec.AT_MOST
)
super.onMeasure(widthSpec, heightMeasureSpecCustom)
val params = layoutParams
params.height = measuredHeight
}
}