作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个约束布局,一个 TextView 在左侧,另一个在右侧。我希望正确的 TextView 对齐到最后。右侧 TextView 也应该能够占用左侧的可用空间。如果空间不够,它应该在最后变成椭圆。
我已经尝试使用以下 xml 代码:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:padding="@dimen/dimen_16dp">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:text="Title"
android:textStyle="bold"
android:layout_marginEnd="@dimen/dimen_24dp"/>
<TextView
android:id="@+id/subtitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:ellipsize="end"
android:maxLines="1"
android:text="Subtitle"/>
</androidx.constraintlayout.widget.ConstraintLayout>
这对于右侧 TextView 中的小文本非常有用。但是,如果右侧 TextView 中的文本 较大,它会与左侧 TextView 重叠。我尝试将 app:layout_constraintStart_toEndOf="@id/title"
添加到正确的 TextView 中,但它会导致两个问题:
如何在不将父布局更改为线性布局的情况下实现这一点?
最佳答案
1st make subtitle textview width = 0dp and give it's start constraint to end of title textview and android:textAlignment="textEnd"
2nd title textview end constraint to start of subtitle textview
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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"
android:padding="16dp">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="24dp"
android:text="Title"
android:textStyle="bold"
app:layout_constraintEnd_toStartOf="@+id/subtitle"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/subtitle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:ellipsize="end"
android:maxLines="1"
android:text="Subtitle Subtitle Subtitle Subtitle Subtitle Subtitle Subtitle"
android:textAlignment="textEnd"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/title"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
关于android - 如何将 View 对齐到约束布局的末尾以及开始约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63936182/
我是一名优秀的程序员,十分优秀!