如果CardView内部的ConstraintLayout不起作用,你可以尝试以下解决方法:
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
app:layout_constraintTop_toTopOf
:将视图的顶部约束到另一个视图的顶部app:layout_constraintBottom_toBottomOf
:将视图的底部约束到另一个视图的底部app:layout_constraintStart_toStartOf
:将视图的开始位置约束到另一个视图的开始位置app:layout_constraintEnd_toEndOf
:将视图的结束位置约束到另一个视图的结束位置例如,将一个视图的顶部约束到另一个视图的底部:
通过正确设置约束条件,你可以确保视图在ConstraintLayout中正确定位。
希望以上解决方法能帮助到你解决问题!