I have a class:
Training{ Integer id; GregorianCalendar date; String title; ArrayList<Exercise> exercises; }
In addition, each object in the list of exercises
has its own list ArrayList<Set> sets
.
In other words, in each workout there is a certain amount of exercise, and in each exercise there is a certain number of approaches. How to bring all this to TableVeiw
?