我第一次遇到这个问题,我的文字与按钮重叠,我尝试使用barrier,guidelines,但将文字放在按钮的中心并启动父级。我实现了textViews文本将在父对象上开始并在button之前结束,并且按钮始终停留在父对象的末尾,如下图所示。
我的布局。
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:id="@+id/titleTextView"
android:text="title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/titleTextView"
android:id="@+id/descriptionTextView"
android:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<ImageView
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:id="@+id/copyImageView"
android:tint="?android:textColorSecondary"
android:src="@drawable/ic_content_copy_black_24dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</androidx.constraintlayout.widget.ConstraintLayout>
答案 0 :(得分:1)
您所需要的只是一点点的利润和正确的约束
现在在您的descriptionTextView
中,首先需要设置app:layout_constrainedWidth="true"
,这样就不会超出布局并在右侧设置一些边距,例如android:layout_marginEnd="8dp"
现在您需要像这样用ImageView
设置约束
app:layout_constraintEnd_toStartOf="@+id/copyImageView"
此行上方的内容将始终使您的文本视图不重叠
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/titleTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="title"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/descriptionTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:text="Lorem ipsum dolor sit amet, consectetur erererereradipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
app:layout_constrainedWidth="true"
app:layout_constraintEnd_toStartOf="@+id/copyImageView"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/titleTextView" />
<ImageView
android:id="@+id/copyImageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_content_copy_black_24dp"
android:tint="?android:textColorSecondary"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.050000012" />
</androidx.constraintlayout.widget.ConstraintLayout>
答案 1 :(得分:1)
您可以通过添加可绘制的右/末端将图标添加到TextView末端。使用以下代码将可绘制对象添加到TextView。您还可以设置可绘制填充,以在可绘制和文本之间留出空间。
android:drawableRight="@drawable/search_icon"
答案 2 :(得分:1)
您必须将宽度设置为0dp,这意味着 match_constraint 并将其结尾限制在ImageView的开始
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:id="@+id/titleTextView"
android:text="title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/titleTextView"
android:id="@+id/descriptionTextView"
android:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
app:layout_constraintEnd_toStartOf="@id/copyImageView"
android:layout_width="0dp"
android:layout_height="0dp"/>
<ImageView
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:id="@+id/copyImageView"
android:tint="?android:textColorSecondary"
android:src="@drawable/ic_content_copy_black_24dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</androidx.constraintlayout.widget.ConstraintLayout>