Parcourir la source

[메인][Bug] 2중 RecyclerView 일때 가로 뷰를 세로 스크롤하면 AppBarLayout이 동기화되지 않던 문제 해결
- 내부 가로 RecyclerView 를 NestedScroll = false 로 하여 스크롤 이벤트가 AppBarLayout 에 전달되지 않도록 수정

hyodong.min il y a 7 ans
Parent
commit
0e91c74ed4

+ 1 - 0
app/src/main/java/kr/co/zumo/app/lifeplus/view/fragment/main/MainContentsCategoryView.java

@@ -43,6 +43,7 @@ public class MainContentsCategoryView extends MainContentsView {
 
     adapter = new MainContentsCategoryAdapter(context);
     recyclerView.setAdapter(adapter);
+    recyclerView.setNestedScrollingEnabled(false);
   }
 
   @Override