스크롤 뷰 안에 제약 레이아웃이있을 때 답을 하나 더 찾았습니다.
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
당신을 위해 작동하지 않습니까?