【Android】ConstraintLayout中RecyclerView 的底部数据显示不全以及覆盖其他View

指定底部约束(app:layout_constraintBottom_toBottomOf=“parent”)的同时,还要设置高度为0dp(android:layout_height=“0dp”),基本完美解决超出遮挡、不从顶部排列、显示不全的问题。

将显示不全的View高度设置为 android:layout_height=“0dp” 代表填充上下约束包围的区域。