I have a CardView list containing around 20 cards made using RecyclerView and an Adapter.
After a Card item is clicked, I want it to start a new intent containing another CardView list. I can do this, but I also want it to set card colors depending on the card position clicked.
For example -
If card item Red is clicked, it should start new intent class and set card colors to shades of Red (I can define it).
And similarly with other color card items.
Is this possible?