What would be the easiest way to get the current day of the week in Android?
Java 8 datetime API made it so much easier :
datetime
API
LocalDate.now().getDayOfWeek().name()
Will return you the name of the day as String
String
Output : THURSDAY