How can I get two RecyclerViews under each other in one layout? I don\'t want to have a single RecyclerView for all items. My code:
You can give each RecycleView height equal to 0dp and weight equal 1:
RecycleView
android:layout_height="0dp" android:layout_width="match_parent" android:layout_weight="1"