For my app I have to show a list of data (100 items) in a fragment and there has to be some text and an image above it. This all has to be in a single ScrollView so you can scroll in the whole page and not just in the list of data.
When I don't use the ScrollView it's only possible to scroll in the RecyclerView but the user needs to scroll over the complete page.
Scrollview
|------------|
| |
| text | <-- LinearLayout
| |
|------------|
| |
| list | <-- RecyclerView, longer than screen height
| |
|------------|
So how can I make it this way without making giving the list the height of all the items combined. This won't be an option because I need to load data from an API that paginates the results (15 results per API call)