ScrollView (1) 썸네일형 리스트형 [안드로이드/java]scrollview 안에 recyclerview 스크롤 문제 xml에 리사이클러뷰 감싸는 레이아웃에 android:descendantFocusability="blocksDescendants" 추가, java에서는 recyclerView.setHasFixedSize(true); recyclerView.setNestedScrollingEnabled(false); 추가하면 된다. 코드 전체 recyclerView.setHasFixedSize(true); RecyclerView.LayoutManager mLayoutManager = new LinearLayoutManager(mContext); recyclerView.setLayoutManager(mLayoutManager); adapter = new Adapter(mContext, dongList, listener); .. 이전 1 다음