スクロールビュー内に制約レイアウトがある場合、もう1つ答えを見つけました。
android:fillViewport="true"
スクロールビューへ
そして
android:layout_height="0dp"
制約レイアウト内
例:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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:fillViewport="true">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="0dp">
// Rest of the views
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
match_parent
うまくいかないのですか?