fix [消息列表时间格式v2]

This commit is contained in:
zlzw 2024-03-25 16:50:38 +08:00
parent 9a7054ce76
commit 84520a4f2f

View File

@ -93,7 +93,7 @@ public class DateFormatUtil {
}
break;
case 2014:
if (year == yearCur) {
/* if (year == yearCur) {
if (month == monthCur && weekInMonth == weekInMonthCur) {
formatDate = getWeekDay(context, calendardate.get(7));
} else {
@ -101,10 +101,11 @@ public class DateFormatUtil {
}
} else {
formatDate = formatDate(date, "yyyy/M/d");
}
}*/
formatDate = formatDate(date, "yyyy/M/d");
if (showTime) {
formatDate = formatDate + " " + getTimeString(dateMillis, context);
formatDate = formatDate ;//+ " " + getTimeString(dateMillis, context);
}
}