Searched defs:MINUTE_IN_MILLIS (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/text/format/
H A DDateUtils.java49 public static final long MINUTE_IN_MILLIS = SECOND_IN_MILLIS * 60; field in class:DateUtils
50 public static final long HOUR_IN_MILLIS = MINUTE_IN_MILLIS * 60;
248 * The minimum timespan to report is set to {@link #MINUTE_IN_MILLIS}.
254 return getRelativeTimeSpanString(startTime, System.currentTimeMillis(), MINUTE_IN_MILLIS);
266 * past will be reported as "0 minutes ago" if this is set to MINUTE_IN_MILLIS. Pass one of
267 * 0, MINUTE_IN_MILLIS, HOUR_IN_MILLIS, DAY_IN_MILLIS, WEEK_IN_MILLIS
287 * this is set to MINUTE_IN_MILLIS. Pass one of 0,
288 * MINUTE_IN_MILLIS, HOUR_IN_MILLIS, DAY_IN_MILLIS,
316 * {@link #MINUTE_IN_MILLIS}.
364 } else if (millis >= MINUTE_IN_MILLIS) {
[all...]

Completed in 334 milliseconds