gpt4 book ai didi

android - 如何使用 ConstraintLayout 水平对齐三个 TextView

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:16:59 25 4
gpt4 key购买 nike

我正在尝试水平对齐三个 TextView(如标题所示),但即使将它们链接在一起并使用 app:layout_constrainedWidth="true" 它们仍然被推出屏幕,奇怪的是,当中间或最后一个变大时,只有左侧。请注意,我正在设置 android:maxLines="1"android:ellipsize="end" 并将它们对齐到屏幕的开头,不确定是否不过很重要。

我也试图限制它们的大小,但是在有两个小文本和一个非常大的文本的情况下,即使布局仍然有一些空间,大文本也会被椭圆化。

示例布局:

<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:padding="22dp">

<TextView
android:id="@+id/greenTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:ellipsize="end"
android:maxLines="1"
android:textColor="@android:color/holo_green_dark"
app:layout_constrainedWidth="true"
app:layout_constraintEnd_toStartOf="@id/blueTextView"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintHorizontal_chainStyle="packed"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:text="TextView" />

<TextView
android:id="@+id/blueTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:ellipsize="end"
android:maxLines="1"
android:textColor="@android:color/holo_blue_dark"
app:layout_constrainedWidth="true"
app:layout_constraintBaseline_toBaselineOf="@id/greenTextView"
app:layout_constraintEnd_toStartOf="@id/orangetextView"
app:layout_constraintStart_toEndOf="@id/greenTextView"
tools:text="Another TextView " />

<TextView
android:id="@+id/orangetextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:ellipsize="end"
android:maxLines="1"
android:textColor="@android:color/holo_orange_dark"
app:layout_constrainedWidth="true"
app:layout_constraintBaseline_toBaselineOf="@id/blueTextView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/blueTextView"
tools:text="Another TextView" />
</android.support.constraint.ConstraintLayout>

这些是使用示例布局的一些情况

没有一个 TextView 是椭圆化的:

First case

第一个 TextView 正在椭圆化:

Second case

最后一个 TextView 不会椭圆化并将其他的推到屏幕外:

Third case


这些是一些可能的解决方案,并未涵盖所有情况

使用 android:maxWidth="90dp" 来防止 TextView 变大,但也不必要地限制了文本:

Fourth case

使用 android:layout_width="0dp" 启用“match_constraint”也不是最佳解决方案,因为布局将为每个 TextView 保留三分之一的显示宽度,即使文本比那个小:

Fifth case

最佳答案

使用弹性盒

<com.google.android.flexbox.FlexboxLayout
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"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:alignContent="flex_start"
app:alignItems="flex_start"
app:flexWrap="nowrap"
app:dividerDrawable="@drawable/ic_divider"
app:showDivider="middle">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxLines="1"
android:textSize="18sp"
app:layout_minWidth="50dp"
android:textColor="@android:color/holo_green_dark"
android:ellipsize="end"
android:text="Text View"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxLines="1"
android:ellipsize="end"
android:textColor="@android:color/holo_blue_dark"
android:textSize="18sp"
app:layout_minWidth="50dp"
android:text="Another TextView"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxLines="1"
android:textColor="@android:color/holo_orange_dark"
android:textSize="18sp"
app:layout_minWidth="50dp"
android:ellipsize="end"
android:text="Another TextView"/>

</com.google.android.flexbox.FlexboxLayout>

此布局的输出:

Short text

Equalized text size

Long text

关于android - 如何使用 ConstraintLayout 水平对齐三个 TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54787494/

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