我试图创建一个由CheckBow和TextView组成的ConstraintLayout。我正在尝试使TextView的宽度为0dp,即使它在Android Studio上看起来正确,当我在模拟器或设备上尝试使用它时,TextView部分也消失了,只剩下了CheckBox。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mainLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<CheckBox
android:id="@+id/checkBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:buttonTint="@color/colorPrimary"
android:checked="false"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/checkText"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="4dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="5dp"
android:text="testtext"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/checkBox"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
两者均应可见,并且TextView的宽度应根据其约束而变化。 我知道这不是完全必要的,我可以使用LinearLayout,但是我也需要在应用程序的其他部分中使用此功能,因此需要解决此问题。