Это происходит потому, что высота просмотров прокрутки равна match_parent
, а не 0dp
- поэтому представление прокрутки не будет учитывать ваши ограничения и будет распространяться по всему экрану.
Обратите внимание, что вы используете tools:ignore="MissingConstraints"
, а атрибут инструмента влияет только на предварительный просмотр, поэтому вы увидите макет иначе, чем предварительный просмотр.
Кроме того, вы пропустили какое-то ограничение - app:layout_constraintTop_toTopOf="parent"
Теперь с этим ограничением должно работать:
<?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:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#0000FF"
app:layout_constraintTop_toTopOf="parent"
tools:layout_editor_absoluteX="0dp" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintTop_toBottomOf="@id/toolbar"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginTop="16dp">
<TextView
android:id="@+id/lyrics_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>