RecycleView에서 스크롤이 한번에 쑹 움직인다. 이유는?
android:nestedScrollingEnabled="false"
스크롤이 이루어지는 뷰에서 화면이 상단이 먼저 보이지게 하려면 아래 속성을 상단 Layout의 속성으로 설정해야 한다.
android:descendantFocusability="beforeDescendants" android:focusableInTouchMode="true"
iOS 개발에 대한 인사이트
RecycleView에서 스크롤이 한번에 쑹 움직인다. 이유는?
android:nestedScrollingEnabled="false"
스크롤이 이루어지는 뷰에서 화면이 상단이 먼저 보이지게 하려면 아래 속성을 상단 Layout의 속성으로 설정해야 한다.
android:descendantFocusability="beforeDescendants" android:focusableInTouchMode="true"