|
|
@ -99,7 +99,6 @@ public class DateUtilities {
|
|
|
|
* @param date time to format
|
|
|
|
* @param date time to format
|
|
|
|
* @return time, with hours and minutes
|
|
|
|
* @return time, with hours and minutes
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@SuppressWarnings("nls")
|
|
|
|
|
|
|
|
public static String getTimeString(Context context, Date date, boolean excludeZeroMinutes) {
|
|
|
|
public static String getTimeString(Context context, Date date, boolean excludeZeroMinutes) {
|
|
|
|
String value;
|
|
|
|
String value;
|
|
|
|
if (is24HourFormat(context)) {
|
|
|
|
if (is24HourFormat(context)) {
|
|
|
@ -128,7 +127,6 @@ public class DateUtilities {
|
|
|
|
* @param date date to format
|
|
|
|
* @param date date to format
|
|
|
|
* @return date, with month, day, and year
|
|
|
|
* @return date, with month, day, and year
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@SuppressWarnings("nls")
|
|
|
|
|
|
|
|
public static String getDateString(Context context, Date date, boolean includeYear) {
|
|
|
|
public static String getDateString(Context context, Date date, boolean includeYear) {
|
|
|
|
String month = DateUtils.getMonthString(date.getMonth() +
|
|
|
|
String month = DateUtils.getMonthString(date.getMonth() +
|
|
|
|
Calendar.JANUARY, DateUtils.LENGTH_MEDIUM);
|
|
|
|
Calendar.JANUARY, DateUtils.LENGTH_MEDIUM);
|
|
|
@ -163,7 +161,6 @@ public class DateUtilities {
|
|
|
|
* @param date date to format
|
|
|
|
* @param date date to format
|
|
|
|
* @return date, with month, day, and year
|
|
|
|
* @return date, with month, day, and year
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@SuppressWarnings("nls")
|
|
|
|
|
|
|
|
public static String getDateStringHideYear(Context context, Date date) {
|
|
|
|
public static String getDateStringHideYear(Context context, Date date) {
|
|
|
|
String month = DateUtils.getMonthString(date.getMonth() +
|
|
|
|
String month = DateUtils.getMonthString(date.getMonth() +
|
|
|
|
Calendar.JANUARY, DateUtils.LENGTH_MEDIUM);
|
|
|
|
Calendar.JANUARY, DateUtils.LENGTH_MEDIUM);
|
|
|
@ -194,7 +191,6 @@ public class DateUtilities {
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @return date format as getDateFormat with weekday
|
|
|
|
* @return date format as getDateFormat with weekday
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@SuppressWarnings("nls")
|
|
|
|
|
|
|
|
public static String getDateStringWithWeekday(Context context, Date date) {
|
|
|
|
public static String getDateStringWithWeekday(Context context, Date date) {
|
|
|
|
String weekday = getWeekday(date);
|
|
|
|
String weekday = getWeekday(date);
|
|
|
|
return weekday + ", " + getDateString(context, date);
|
|
|
|
return weekday + ", " + getDateString(context, date);
|
|
|
@ -220,7 +216,6 @@ public class DateUtilities {
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @return date format as getDateFormat with weekday
|
|
|
|
* @return date format as getDateFormat with weekday
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@SuppressWarnings("nls")
|
|
|
|
|
|
|
|
public static String getDateStringWithTimeAndWeekday(Context context, Date date) {
|
|
|
|
public static String getDateStringWithTimeAndWeekday(Context context, Date date) {
|
|
|
|
return getDateStringWithWeekday(context, date) + " " + getTimeString(context, date);
|
|
|
|
return getDateStringWithWeekday(context, date) + " " + getTimeString(context, date);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -228,7 +223,6 @@ public class DateUtilities {
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @return date with time at the end
|
|
|
|
* @return date with time at the end
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@SuppressWarnings("nls")
|
|
|
|
|
|
|
|
public static String getDateStringWithTime(Context context, Date date) {
|
|
|
|
public static String getDateStringWithTime(Context context, Date date) {
|
|
|
|
return getDateString(context, date) + " " + getTimeString(context, date);
|
|
|
|
return getDateString(context, date) + " " + getTimeString(context, date);
|
|
|
|
}
|
|
|
|
}
|
|
|
|