我试图将2个textViews并排放置在ConstraintLayout中,而左视图具有动态文本(可以是短文本,也可以是很长的文本,如果它与第二个视图重叠则应为省略号)。 我希望2个文本视图可以并排放置,所以第二个视图将从第一个视图的末尾开始。
请帮助:-)
答案 0 :(得分:0)
尽管这是最简单的方法,但是如果您希望它们占据相同的空间,则可以使用layout_constraintVertical_chainStyle。
<?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"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/text_view1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Random 1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/text_view2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Random 1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/text_view1"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
对此https://medium.com/@loutry/guide-to-constraintlayout-407cd87bc013有所了解。通常在希望它们均匀分布水平或垂直方向时使用链式样式。链由设置在链的第一个元素(链的“头”)上的属性控制。链),这是水平链的最左侧小部件,垂直链的最顶部小部件。
答案 1 :(得分:0)
尝试这样的事情:
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/txt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintLeft_toLeftOf="parent"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintLeft_toRightOf="@id/txt1"
app:layout_constraintRight_toRightOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>
答案 2 :(得分:0)
尝试此操作...只需根据您的布局调整视图的顶部和底部。
<TextView
android:id="@+id/leftView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="5dp"
android:text="Left View"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/rightView"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/rightView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:text="Right View"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/leftView"
app:layout_constraintTop_toTopOf="parent" />