I am working on an Android app and have recently been given a task where I need to update an existing ListView, containing search results, to include a horizontally scrollable list of cards at the first position. Each card should be tappable, but I should still be able to vertically scroll through the entire list.
I think I can implement this by just using a HorizontalScrollView as a custom view for the first item in the list. However, is there a way to keep the horizontal list and the existing ListView separate, while maintaining the ability to vertically scroll?