A.J. Kueterman
A.J. Kueterman
Understood, I had a look at the source and found where they're doing it in there and I agree. Has there been progress on other issues to more closely replicate...
For some reason @hi-dhl's link didn't work for me, but this one does explain the use of `matchingFallbacks` https://developer.android.com/studio/build/dependencies#resolve_matching_errors
Seconding this, using `CardView` as a header locked all the views into the same height, even after changing visibility to GONE or doing `wrap_content` on the height. I wrapped my...
I have a similar issue with a RecyclerView in a BottomSheet. LinearLayoutManager works like a charm for scrolling but StickyHeaderLayoutManager doesn't enable scrolling down without scrolling down the BottomSheet.
By modifying the `StickyHeaderLayoutManager` slightly to subclass the `LinearLayoutManager` rather than the `RecyclerView.LayoutManager`, I got the behavior I wanted in a `BottomSheet` 🎉 I might play around with creating a...
@ibrcic I have not created a PR yet unfortunately. But please go for it if you are able to!