gpt4 book ai didi

android - 如何在段落的单词之间添加空格以在 Android 中的 Textview(即对齐文本)中删除结尾的空格?

转载 作者:行者123 更新时间:2023-12-04 13:06:07 25 4
gpt4 key购买 nike

我正在为我的应用程序创建一个 UI,我需要在其中显示这样的段落

enter image description here

为此我使用了 Textview 这样的

<TextView
android:id="@+id/description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dp24"
android:fontFamily="sans-serif-thin"
android:text="@string/sample_description"
android:textColor="@color/black"
android:lineSpacingExtra="@dimen/dp4"
/>

但是我的输出是这样的

enter image description here

如果您在我的输出中注意到某些行的末尾还有一些空间。我不想要它。

如果您在第一张图片中看到最后没有剩余空间。他们在单词之间添加了空格以从末尾删除空格。

那么,我的问题是如何实现第一个图像输出?

最佳答案

您需要的东西称为合理的内容。您可以使用

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:justificationMode="inter_word" />

关于android - 如何在段落的单词之间添加空格以在 Android 中的 Textview(即对齐文本)中删除结尾的空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69425856/

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