ScrollView는 LinearLayout, FrameLayout 등 반드시 감싸는 레이아웃 구조가 하나 있어야함.
∵ 자체적으로 위젯 객체에대한 정보를 가지지 않음.
ScrollView 내부에 ConstraintLayout을 지정하는 경우
ScrollView 대신 NestedScrollView 사용 권장
ScrollView의 제약 조건범위를 모두 명시 (위,아래, 왼,오른)
// 아래 제약조건중 Bottom_toBottomOf 속성 하나만 빼놔도 정상적으로 작동하지 않게된다.
<androidx.core.widget.NestedScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="70dp"
android:fillViewport="true"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/store_name_layout"
app:layout_constraintBottom_toBottomOf="parent">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/store_info_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="50dp"
app:layout_constraintTop_toBottomOf="@id/store_name_layout">
[Reference]
https://stackoverflow.com/questions/57303268/scrollview-not-working-inside-constraint-layout
'Android' 카테고리의 다른 글
Android release Alpha vs Beta (0) | 2020.12.09 |
---|---|
[Android] Activity to Activity Data Pass (feat. Intent) (0) | 2020.07.06 |
[Android] SharedPreference (0) | 2020.07.03 |
[Android] instance (0) | 2020.07.03 |
[Android] Service 2편 (Foreground) (0) | 2020.06.22 |