Skip to content

Tag: android

Android date is incorrect

I am using Calendar class to get year, month and day: Today is 11 Dec 2021 (2021-12-11). But toast alert shows 2021-11-11. Also I tried to set calendar time to a new Date class but still wrong Answer tl;dr I am using Calendar class Don’t. Use only java.time classes. 2021 Details The Answer by Modi is correct.…