Android Coding

ScrollView 안에서의 RecyclerView시 Smooth Scroll

오마로 2017. 11. 11. 17:24
반응형


ScrollView 안에 RecyclerView 설정 시, Scroll이 부드럽게 되지 않는 경우가 발생한다.

좀 더 자연스럽게 처리하기 위한 팁..


1.Source에서의 설정

mRecyclerView.setNestedScrollingEnabled(false);


2.XML에서의 설정

<android.support.v7.widget.RecyclerView
android:id="@+id/rv_profile_card_bg"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
android:fillViewport="true"
android:nestedScrollingEnabled="false"
/>


해당 RecyclerView 에 설정으로 좀 더 자연스럽게 Scroll 됩니다.


오늘도 좋은 코딩 하세요 ^^

반응형