gpt4 book ai didi

android - TextView:用多行包裹内容

转载 作者:数据小太阳 更新时间:2023-10-29 02:38:23 25 4
gpt4 key购买 nike

我有以下 TextView:

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:minLines="2"
android:text="Lorem ipsum dolor sit amet"/>

这是我得到的行为:

这是我预期的行为:

我想在不设置硬编码宽度的情况下获得这种行为,因为每种语言的文本都不同。有什么办法吗?

编辑:我还想避免将 TextView 的宽度绑定(bind)到父级的宽度。是否有足够的空间在一行中显示整个文本并不重要,我希望它显示在两行中。鉴于此,我希望 TextView 具有尽可能小的宽度。

最佳答案

是的,您可以使用 ConstraintLayoutGuidelines确定您的 textView 宽度(不是硬编码),这是一个简单的示例不使用 guidlines( TextView 有限制):

<?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:id="@+id/mainQuestionsLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">


<TextView
android:id="@+id/textView11"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:text="TextVieasdasdwTextVieasdasdwTextVieasdasdwTextVieasdasdwTextVieasdasdwTextVieasdasdwTextVieasdasdwTextVieasdasdwTextVieasdasdwTextVieasdasdw"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>

它看起来像这样:

enter image description here

现在,如果你想要更灵活的宽度你可以使用指南或者只是将你的 TextView 约束给另一个 View 并将其宽度设置为0dp

这是一个带有指南的示例:

<?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:id="@+id/mainQuestionsLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">


<TextView
android:id="@+id/textView11"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:text="TextVieasdasdwTextVieasdasdwTextVieasdasdwTextVieasdasdwTextVieasdasdwTextVieasdasdwTextVieasdasdwTextVieasdasdwTextVieasdasdwTextVieasdasdw"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/guideline19"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

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

它看起来像这样:

enter image description here

请注意,虚线是实际的指南,这是设计预览中的样子,您不会在运行时看到指南,但您的 textView 将如下所示。

关于android - TextView:用多行包裹内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55971312/

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