I am creating a small calendar application with some specific features for my user base, but I'm not sure which calendar is best to use. I used the Calendar inner class, but recently noticed that I probably should have used GregorianCalendar.
So, I'm going to change the calendar, but would like to know if I should use the calendar, or if there is any better alternative. I was looking a bit for JodaTime , but it seems to have performance issues on Android phones. I also found a library called Date4J . Anyone who has tested any of them on Android and can recommend them? Or should I stick with inner classes?
source
share