Over the past few weeks, I have learned to use RecyclerView . I need to implement a horizontal list, i.e. By turning the device in landscape mode as follows:

I found a better solution for this (how to create a horizontal offset RecyclerView , here ), but ran into another problem. The RecyclerView element was greater than the height of the device (horizontal, horizontal), so I need to create a vertical and horizontal offset at the same time.
I reviewed the Android Developer methods for the LayoutManager class, but my skills are not high enough to understand most methods. I also tried placing the RecyclerView vertically inside another RecyclerView horizontally with all the content, but I get an error:
IllegalStateException: RecyclerView does not have LayoutManager
To survive this, I deleted all the <View ... /> elements from the XML file, but this does not produce any results.
To clarify what I'm asking: is it possible for my layout to scroll both horizontally and vertically, and if you could explain how I would appreciate it.
android android-layout android-studio scroll android-recyclerview
Vicky vicent
source share