Let's say I have a RecyclerView
filled with Car objects. A Car has a lot of variables like ID, size, colour, logo, etc. Every car is saved to the database.
Now, when I want to open the DetailActivity
about the specific Car, should I pass the whole object into the new activity OR just an ID and get data from database in DetailActivity
again?
Which solution will be more relevant and faster?