How can create text representation of some date, that takes locale into account and contains only day and month (no year)?
Following code gives me s
This will work for Android, in case someone needs it:
int flags = DateUtils.FORMAT_SHOW_DATE | DateUtils.FORMAT_NO_YEAR; String monthAndDayText = DateUtils.formatDateTime(context, date, flags);