如何调整textview的大小不超出屏幕

How to size textview to not go outside the screen

我必须实现一个聊天机器人,但我不知道如何为消息调整文本视图的大小。

我现在有的是这个

我希望气球完全适合文本,右边没有白色空白 space,不使用 maxWidth

我的密码是

<?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="wrap_content"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <androidx.appcompat.widget.AppCompatImageView
        android:id="@+id/bot_icon"
        android:layout_width="50dp"
        android:layout_height="0dp"
        android:adjustViewBounds="true"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        android:src="@drawable/ic_botchat"
        android:layout_marginStart="8dp"
        android:layout_marginTop="16dp"
        />

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toEndOf="@id/bot_icon"
        app:layout_constraintTop_toBottomOf="@id/bot_icon">

        <androidx.appcompat.widget.AppCompatTextView
            android:id="@+id/textMessage"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginEnd="8dp"
            android:background="@drawable/bot_message"
            android:elevation="3dp"
            android:fontFamily="@font/roboto"
            android:paddingStart="16dp"
            android:paddingTop="10dp"
            android:paddingEnd="16dp"
            android:paddingBottom="10dp"
            android:textColor="@color/visia"
            android:textSize="18sp"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintEnd_toEndOf="parent"/>

    </androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

我尝试将 AppCompatTextView 中的 android:layout_width 修改为 wrap_content,但文本显示为一行,超出了屏幕范围。

使用属性“maxLines”指定文本视图应具有的行数。例如,

android:maxLines="2"

如果您的问题是关于如何删除 textView 中的右 space,只需删除 textview 属性中的这一行:

app:layout_constraintEnd_toEndOf="parent"

您实际上是将 textview 的结尾绑定到其父项的结尾,这就是 wrap_content 无法正常运行的原因。所以结果将是:

<?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="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto">

<androidx.appcompat.widget.AppCompatImageView
    android:id="@+id/bot_icon"
    android:layout_width="50dp"
    android:layout_height="0dp"
    android:adjustViewBounds="true"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    android:src="@drawable/boy_icon"
    android:layout_marginStart="8dp"
    android:layout_marginTop="16dp"
    />

<androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.0"
    app:layout_constraintStart_toEndOf="@id/bot_icon"
    app:layout_constraintTop_toBottomOf="@id/bot_icon">

    <androidx.appcompat.widget.AppCompatTextView
        android:id="@+id/textMessage"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:background="@drawable/round_gray_20"
        android:elevation="3dp"
        android:paddingStart="16dp"
        android:paddingTop="10dp"
        android:paddingEnd="16dp"
        android:paddingBottom="10dp"
        android:text="fsdfsdfsdfsdsfsd "
        android:textColor="@color/blackText"
        android:textSize="18sp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

请注意,我可能已经更改了一些 drawables 并使用了我的才能看到结果。因此,将它们相应地还原为原始的。

尝试为文本父级设置宽度并放置文本wrap_content

将您的布局编辑成这样

<?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:background="#D7D7D7">

    <androidx.appcompat.widget.AppCompatImageView
        android:id="@+id/bot_icon"
        android:layout_width="50dp"
        android:layout_height="0dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="16dp"
        android:adjustViewBounds="true"
        android:src="@drawable/ic_botchat"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <androidx.appcompat.widget.AppCompatTextView
        android:id="@+id/textMessage"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginBottom="8dp"
        android:background="@drawable/bot_message"
        android:elevation="3dp"
        android:fontFamily="@font/roboto"
        android:maxLines="2"
        android:paddingStart="16dp"
        android:paddingTop="10dp"
        android:paddingEnd="16dp"
        android:paddingBottom="10dp"
        android:text="Lorem Ipsum."
        android:textColor="@color/visia"
        android:textSize="18sp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toEndOf="@id/bot_icon"
        app:layout_constraintTop_toBottomOf="@id/bot_icon" />

</androidx.constraintlayout.widget.ConstraintLayout>

然后创建 XML 文件“bot_message.xml”

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <corners
        android:bottomLeftRadius="20dp"
        android:bottomRightRadius="20dp"
        android:topLeftRadius="0dp"
        android:topRightRadius="20dp" />

    <solid android:color="#F5F5F5" />

</shape>

根据 this 的回答,您无法通过使用默认的 TextView 实现您想要的效果,您需要有一个自定义文本视图,您可以在其中覆盖 onMeasure方法,以便最大宽度将是最大线的宽度。