gpt4 book ai didi

android - 如何将 View 对齐到约束布局的末尾以及开始约束

转载 作者:行者123 更新时间:2023-12-04 23:54:17 25 4
gpt4 key购买 nike

我有一个约束布局,一个 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 中,但它会导致两个问题:

  • 如果文本很小,右侧 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>

enter image description here

关于android - 如何将 View 对齐到约束布局的末尾以及开始约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63936182/

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