Is there any library or algorithm for Persian (Shamsi or Jalali) calendar in Android? [closed]
I want to convert Gregorian (western) date to Persian (Shamsi) date and vice versa for all versions of Android. Is there any complete and reliable library or algorithm? Bobs I'm using this algorithm for years and it is very accurate between 1901 and 2099. Use it and Enjoy! :) public class Utilities { private class SolarCalendar { public String strWeekDay = ""; public String strMonth = ""; int date; int month; int year; public SolarCalendar() { Date MiladiDate = new Date(); calcSolarCalendar(MiladiDate); } public SolarCalendar(Date MiladiDate) { calcSolarCalendar(MiladiDate); } private void