Android ConstraintLayout TextView剪切文本

Android ConstraintLayout TextView剪切文本,android,textview,android-constraintlayout,Android,Textview,Android Constraintlayout,我遇到了一个奇怪的问题,TextView中的文本在换行时不显示 此屏幕截图显示了我的问题: 粗体文本会导致单词换行到下一行,但不会显示。这就是没有粗体字时的样子: 这就是我使用android:lines=“2”强制两行代码时的情况: 这是我正在使用的代码: <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="

我遇到了一个奇怪的问题,
TextView
中的文本在换行时不显示

此屏幕截图显示了我的问题:

粗体文本会导致单词换行到下一行,但不会显示。这就是没有粗体字时的样子:

这就是我使用android:lines=“2”强制两行代码时的情况:

这是我正在使用的代码:

<?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:id="@+id/episode_row_item_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:padding="5dp"
    android:foreground="?android:attr/selectableItemBackground"
    android:orientation="horizontal">

    <ImageView
        android:id="@+id/episode_row_item_title_thumbnail"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:adjustViewBounds="true"
        android:scaleType="fitCenter"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:visibility="gone"
        />
    <!-- This is the problematic textview-->
    <TextView
        android:id="@+id/episode_row_item_title"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:lineSpacingExtra="2dp"
        android:layout_marginEnd="8dp"
        android:breakStrategy="simple"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/episode_row_item_download"
        android:foreground="?android:attr/selectableItemBackground"
       />

    <ImageView
        android:id="@+id/episode_row_item_download"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingTop="2dp"
        app:layout_constraintTop_toTopOf="@+id/episode_row_item_title"
        app:layout_constraintEnd_toEndOf="parent"
        android:foreground="?android:attr/selectableItemBackground"
        />

    <TextView
        android:id="@+id/episode_row_item_date"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:textSize="13sp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/episode_row_item_title"
        app:layout_constraintEnd_toStartOf="@+id/episode_row_item_duration"
        android:layout_marginTop="4dp"
        />

    <TextView
        android:id="@+id/episode_row_item_duration"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="13sp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/episode_row_item_title"
        android:layout_marginTop="4dp"
        />

</androidx.constraintlayout.widget.ConstraintLayout>

我尝试将
宽度设置为
包裹内容
,并更改填充和边距,但没有效果

我应该提到的是,如果有区别的话,这个布局是一个
回收视图中的一行。


<?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:id="@+id/episode_row_item_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="5dp"
    android:foreground="?android:attr/selectableItemBackground">

    <ImageView
        android:id="@+id/episode_row_item_title_thumbnail"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:adjustViewBounds="true"
        android:scaleType="fitCenter"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:visibility="visible"
        />
    <!-- This is the problematic textview-->
    <TextView
        android:id="@+id/episode_row_item_title"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:lineSpacingExtra="2dp"
        android:layout_marginEnd="8dp"
        android:textStyle="bold"
        android:text="Episode 1010 Christina Hendericks"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@id/episode_row_item_title_thumbnail"
        app:layout_constraintEnd_toStartOf="@+id/episode_row_item_download"
        android:foreground="?android:attr/selectableItemBackground"
        android:layout_marginRight="8dp"/>

    <ImageView
        android:id="@+id/episode_row_item_download"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingTop="2dp"
        app:layout_constraintTop_toTopOf="@+id/episode_row_item_title"
        app:layout_constraintEnd_toEndOf="parent"
        android:foreground="?android:attr/selectableItemBackground"
        />

    <TextView
        android:id="@+id/episode_row_item_date"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:textSize="13sp"
        app:layout_constraintStart_toStartOf="parent"
        android:text="Yesterday"
        app:layout_constraintTop_toBottomOf="@+id/episode_row_item_title"
        app:layout_constraintEnd_toStartOf="@+id/episode_row_item_duration"
        android:layout_marginTop="4dp"/>

    <TextView
        android:id="@+id/episode_row_item_duration"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="13sp"
        android:text="01:02:24"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/episode_row_item_download"
        android:layout_marginTop="4dp"/>

</androidx.constraintlayout.widget.ConstraintLayout>

尝试使用上面的布局和正确的绘图工具

那么您想要什么?您是否希望文本仍为一行,但具有字幕效果?或者你想要文本作为包装内容,并且可以自动调整线条?我认为是后者。第一幅图像中的“Hendricks”一词被包装到下一行,但由于任何原因都没有显示出来。您是否尝试过
android:layout\u height=“wrap\u content”
?该死,就是这样。感谢您的帮助欢迎来到复杂的青年世界:)