I'm wanting to add a RecyclerView into a ScrollView so I can easily add a header to the RecyclerView.
I've called setAutoMeasureEnabled(true) (part of the recently announced changes to the RecyclerView) to the LayoutManager but the result is no recycling of child views.
If there are 10,000 items in my adapter, 10,000 views are created...
Is this expected behaviour?