What i want to create
I want to create a list where each item in this list is a data table, as shown below:
The user should be able to sort the items in the data table and should be able to sort the data tables themselves.
Each table will represent a client, and each element in this table is an order. The user will then collect orders if he collects the order, which will be rejected, but the user will also be able to return them.
What i tried
I tried to enable Recyclerview inside Recyclerview, but it caused side effects and merging errors, also I read online that this is basically bad practice. My initial intention was to use a recylcerview with a sorted list.
I did a few searches on the Internet, and many people recommended using categories between items, so you only need one list. But since I have data tables (CardViews) that can be independent, this is not an option.
If someone wants to push me in the right direction, I would be very grateful.
user8477003
source share