У меня есть TextView в ConstraintLayout с большим текстом, но последняя строка не видна. Если я удаляю app:layoutthen_constrainedHeight
, он становится видимым, но TextView становится таким же высоким, как и сам экран (именно поэтому я добавил app:layoutthen_constrainedHeight
в первую очередь)
Кто-нибудь сталкивался с такой проблемой? Что с этим можно сделать? В приведенном ниже примере последние символы «3 4» должны быть во второй строке, но они не отображаются. Снимок экрана:
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<ImageView
android:id="@+id/image_1"
android:layout_width="20dp"
android:layout_height="20dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:contentDescription="@null"
android:background="@color/red"
/>
<TextView
android:id="@+id/text_1"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constrainedHeight="true"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toRightOf="@+id/image_1"
app:layout_constraintRight_toLeftOf="@+id/image_2"
app:layout_constraintBottom_toTopOf="@+id/text_2"
tools:text="1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4"
/>
<TextView
android:id="@+id/text_2"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constrainedHeight="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toRightOf="@+id/image_1"
app:layout_constraintRight_toLeftOf="@+id/image_2"
app:layout_constraintTop_toBottomOf="@+id/text_1"
tools:text="end"
/>
<ImageView
android:id="@+id/image_2"
android:layout_width="20dp"
android:layout_height="20dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:background="@color/red"
android:contentDescription="@null"
/>
</androidx.constraintlayout.widget.ConstraintLayout>