Hi Guys,
I am using material calendar view in one of my app, When i switch to arabic language sometimes calendar is not fully updated in case of arabic language.
Please find the attached screenshot.

You can use the setTitleFormatter method, for example :
materialCalendarView.setTitleFormatter(day -> {
Locale locale = new Locale("ar");
DateFormat dateFormat = new SimpleDateFormat("LLLL yyyy", locale);
return dateFormat.format(day.getDate());
});
is there any way to show dates in Arabic??
Most helpful comment
You can use the
setTitleFormattermethod, for example :