23
ScrollView 내부의 RecyclerView가 작동하지 않습니다
동일한 레이아웃에서 RecyclerView와 ScrollView가 포함 된 레이아웃을 구현하려고합니다. 레이아웃 템플릿 : <RelativeLayout> <ScrollView android:id="@+id/myScrollView"> <unrelated data>...</unrealated data> <android.support.v7.widget.RecyclerView android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/my_recycler_view" /> </ScrollView> </RelativeLayout> 문제 : 마지막 요소까지 스크롤 할 수 있습니다. ScrollView 내가 시도한 것 : ScrollView(현재 ScrollView포함 RecyclerView) 내부의 카드보기 -RecyclerView 초기 생각은 보기 유형 중 하나 가 …