I'm working on one app. In that app, there is a card view. I want to change background color of the card view day wise.
Like Monday = red color Tuesday = Green color
till Sunday! and from next Monday, it will then start from first like Monday=red color
Any idea? how to achieve this?
I tried this
Calendar calendar = Calendar.getInstance();
String currentDate = DateFormat.getDateInstance(DateFormat.FULL).format(calendar.getTime());
It gives me output like this
Sunday, April 19, 2020
now, how can I use this to change the background color?