-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RecyclerView render issue if wrapped inside NestedScrollView #400
Comments
Thanks for the report. Confirmed the behavior, but I don't come up with a usecase where RecyclerView is wrapped with a NestedScrollView in practice. In what usecase do you expect that situation? |
Thanks for your quick reply, In my case I'm using multiple views including customRecyclerView inside NestedScrollView, where I want to make whole screen scroll instead of RecyclerView. |
But NestedScrollView if able to have only a single direct child. So it's not possible to make the entire screen scrollable including RecyclerView, no? |
Yes we can add root element to all views and screen is scrollable, in my case I'm using RelativeLayout and following structure.
|
Oh so the actual XML was different from the one you pasted in the first comment. Understood. |
Issues and steps to reproduce
RecyclerView is not showing all items when list is long when used with FlexboxLayoutManager
android:nestedScrollingEnabled="false"
inside NestedScrollViewExpected behavior
RecyclerView should render all items
Version of the flexbox library
0.3.1, 0.3.2
Code example based on repro steps
The text was updated successfully, but these errors were encountered: