约束布局TextView自动换行问题
app:layout_constraintStart_toEndOf="@+id/textView3"
改为
app:layout_constraintLeft_toRightOf="@+id/textView3"android:layout_height="wrap_content"
搭配:app:layout_constrainedWidth="true"
android:layout_height="wrap_content"
搭配:app:layout_constrainedHeight="false"(不写默认即false)最后更新于