gpt4 book ai didi

android - ConstraintLayout 中的两个元素相互重叠

转载 作者:行者123 更新时间:2023-11-29 19:02:17 24 4
gpt4 key购买 nike

我想使用 ConstraintLayout 创建一个列表项。只有一行,一个 View 在左边和右边。但如果第一个太长,它就会与另一个重叠。如何避免?是否可以让左 View 分两行或使 ... 在右 View 之前?

代码:

<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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.holodynskyi.v.test.MainActivity">

<android.support.constraint.ConstraintLayout
android:layout_margin="8dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginStart="8dp"
android:text="Text111111111111111111111111"
app:layout_constraintStart_toStartOf="parent" />

<TextView
android:id="@+id/text2"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginEnd="8dp"
android:text="Text2"
app:layout_constraintEnd_toEndOf="parent" />
</android.support.constraint.ConstraintLayout>

</android.support.constraint.ConstraintLayout>

最佳答案

我会使用 Guideline在 TextView1 和 TextView2 之间定义一个不可见的限制。

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView
android:id="@+id/text1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginStart="8dp"
android:text="Text1Text1Text1Text1Text1Text1Text1Text1Text1Text1Text1Text1Text1Text1Text1Text1Text1Text1Text1Text1Text1Text1Text1Text1"
app:layout_constraintEnd_toStartOf="@id/endOfText1"
app:layout_constraintStart_toStartOf="parent" />

<TextView
android:id="@+id/text2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginEnd="8dp"
android:text="Text2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/endOfText1" />

<android.support.constraint.Guideline
android:id="@+id/endOfText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.75" />

</android.support.constraint.ConstraintLayout>

关于android - ConstraintLayout 中的两个元素相互重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48559045/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com