[Solved] Rounding calendar time to nearest 5 mins [duplicate]

I didn’t test this code but i believe it should work. int unroundedMinutes = isha_jamaat_cal.get(Calendar.MINUTE); int mod = unroundedMinutes % 5; isha_jamaat_cal.add(Calendar.MINUTE, mod < 3 ? -mod : (5-mod)); The basic idea is to check whether the current time is nearest to the next or the previous 5 minutes clock mark and adjusting the added … Read more

[Solved] Is there any calendar view libs that support English as well as Hebrew(Arabic the same)

I’m not aware of any other calenderview for android that would solve your problem. But I think you can stick to material-calendarview. As you already mentioned there is a pull request that promises to fix the issue you’re facing. This pull request however has not yet been merged into the main branch of the prolificinteractive/material-calendarview … Read more