2017-10-18 3 views
0

내 재활용은 NestedScrollView를 스크롤 할 수 있습니다. 그러나 평소와 같이 부드럽 지 않습니다. 아무도이 문제를 해결할 수 있도록 도와주세요. 여기 NestedScrollView의 재활용보기

내 코드

<android.support.v4.widget.NestedScrollView 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    android:fillViewport="true"> 

    <android.support.v7.widget.RecyclerView 
     android:id="@+id/fg_movie_list" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

    </android.support.v7.widget.RecyclerView> 

</android.support.v4.widget.NestedScrollView> 
+0

당신이 recyclerview –

+0

내가 탐색 서랍 활동 을 사용하고의 부모로서 중첩있는 ScrollView 필요 왜 내가 생각하고, 코디네이터 레이아웃 –

+0

입니다 조각에 재활용보기가 포함되어 있습니다. –

답변

1

사용

mRecyclerView.setNestedScrollingEnabled(false); 
mRecyclerView.setHasFixedSize(true); 
관련 문제