android - ConstraintLayout 中带有drawableEnd 的 TextView 换行问题

标签 android android-layout textview android-constraintlayout

我有一个 ConstraintLayout,其中包含一个 TextView,文本末尾有一个小图像。我遇到的这个问题是长文本没有换行。如果我修复 TextView 上的约束,以便长文本在末尾包裹图像到达屏幕末尾:

屏幕截图:

enter image description here

如果我将 app:layout_constraintEnd_toEndOf="parent" 添加到 TextView ,长文本会换行,但末尾的图像不会换行:

enter image description here

代码:

<?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="wrap_content"
    android:padding="10dp"
    android:layout_marginBottom="20dp"
    android:orientation="horizontal">

    <ImageView
        android:id="@+id/subscription_row_item_thumb"
        android:layout_width="65dp"
        android:layout_height="65dp"
        android:scaleType="centerInside"
        android:background="@drawable/all_circle_white_bg"
        android:padding="1dp"
        android:foreground="?android:attr/selectableItemBackground"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"/>

    <ImageView
        android:id="@+id/subscription_row_item_add"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:foreground="?android:attr/selectableItemBackground"
        android:layout_marginTop="15dp"
        app:layout_constraintTop_toBottomOf="@id/subscription_row_item_thumb"
        app:layout_constraintStart_toStartOf="@id/subscription_row_item_thumb"
        app:layout_constraintEnd_toEndOf="@id/subscription_row_item_thumb"/>

     <TextView
        android:id="@+id/subscription_row_item_title"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:breakStrategy="simple"
        android:layout_marginStart="15dp"
        android:textSize="16sp"
        app:layout_constrainedWidth="true"
        app:drawableEndCompat="@drawable/ic_action_open_episode_list"
        android:drawablePadding="10dp"
        app:layout_constraintTop_toTopOf="@id/subscription_row_item_thumb"
        app:layout_constraintBottom_toBottomOf="@id/subscription_row_item_thumb"
        app:layout_constraintStart_toEndOf="@id/subscription_row_item_thumb"
        app:layout_constraintEnd_toEndOf="parent"/>

    <TextView
        android:id="@+id/subscription_row_item_date"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:breakStrategy="simple"
        android:layout_marginTop="5dp"
        android:textSize="14sp"
        android:textColor="#A1A0A0"
        app:layout_constraintTop_toBottomOf="@id/subscription_row_item_title"
        app:layout_constraintStart_toStartOf="@id/subscription_row_item_title"/>

</androidx.constraintlayout.widget.ConstraintLayout>

最佳答案

要解决此问题,您需要:

  1. wrap_content 保持 drawableEnd 粘在文本末尾的宽度,并避免由于 app:layout_constraintEnd_toEndOf= 而粘到末尾“ parent ”
  2. 设置 app:layout_constraintHorizo​​ntal_bias="0" 以使 TextView 偏向开头

TextView内容展开时,app:layout_constraintEnd_toEndOf="parent"才会生效

将它们应用到TextView:

 <TextView
    android:id="@+id/subscription_row_item_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:breakStrategy="simple"
    android:layout_marginStart="15dp"
    android:textSize="16sp"
    app:layout_constrainedWidth="true"
    app:layout_constraintHorizontal_bias="0"
    app:drawableEndCompat="@drawable/ic_action_open_episode_list"
    android:drawablePadding="10dp"
    app:layout_constraintTop_toTopOf="@id/subscription_row_item_thumb"
    app:layout_constraintBottom_toBottomOf="@id/subscription_row_item_thumb"
    app:layout_constraintStart_toEndOf="@id/subscription_row_item_thumb"
    app:layout_constraintEnd_toEndOf="parent"/>

enter image description here

关于android - ConstraintLayout 中带有drawableEnd 的 TextView 换行问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69316393/

相关文章:

android - Android Studio : White Space Formatting Strategy Factory error

android - 在android中无间断地播放连续视频流

android - 自定义样式的 AlertDialog 的样式属性

android - 以编程方式更改按钮的 drawableLeft

HTML 格式的 Android 应用程序

android - 远程 View 中的 achartengine 位图宽度

android - 错误: Error: String types not allowed (at 'layout_gravity' with value 'start' )

android - 将 LinearLayout 对齐到 DrawerLayout 的底部

android - 如何使textview在android中的按钮点击事件中可见

android - 是否可以在 textview 中缩放 drawableleft 和 drawableright?