<Pass data from multiple retrofit requests to one ...
# stackoverflow
u
Pass data from multiple retrofit requests to one recycler view adapter I have two resources from which I would like to pass data to one recycler view adapter. The data should be displayed on CardView items as shown in the picture.

how I would like to do it

First I make an asynchronous retrofit request to get all appointments. Based on the restaurant_key I make another request for each appointment to get more details about the restaurant. How can I pass this data combined to the adapter...