1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
package cgeo.geocaching.ui;
import cgeo.geocaching.R;
import cgeo.geocaching.cgeoapplication;
import android.content.Context;
import android.text.format.DateUtils;
public abstract class Formatter {
/** Text separator used for formatting texts */
public static final String SEPARATOR = " ยท ";
private static final Context context = cgeoapplication.getInstance().getBaseContext();
/**
* Generate a time string according to system-wide settings (locale, 12/24 hour)
* such as "13:24".
*
* @param date
* milliseconds since the epoch
* @return the formatted string
*/
public static String formatTime(long date) {
return DateUtils.formatDateTime(context, date, DateUtils.FORMAT_SHOW_TIME);
}
/**
* Generate a date string according to system-wide settings (locale, date format)
* such as "20 December" or "20 December 2010". The year will only be included when necessary.
*
* @param date
* milliseconds since the epoch
* @return the formatted string
*/
public static String formatDate(long date) {
return DateUtils.formatDateTime(context, date, DateUtils.FORMAT_SHOW_DATE);
}
/**
* Generate a date string according to system-wide settings (locale, date format)
* such as "20 December 2010". The year will always be included, making it suitable
* to generate long-lived log entries.
*
* @param date
* milliseconds since the epoch
* @return the formatted string
*/
public static String formatFullDate(long date) {
return DateUtils.formatDateTime(context, date, DateUtils.FORMAT_SHOW_DATE
| DateUtils.FORMAT_SHOW_YEAR);
}
/**
* Generate a numeric date string according to system-wide settings (locale, date format)
* such as "10/20/2010".
*
* @param date
* milliseconds since the epoch
* @return the formatted string
*/
public static String formatShortDate(long date) {
return DateUtils.formatDateTime(context, date, DateUtils.FORMAT_SHOW_DATE
| DateUtils.FORMAT_NUMERIC_DATE);
}
/**
* Generate a numeric date string according to system-wide settings (locale, date format)
* such as "10/20/2010". Today and yesterday will be presented as strings "today" and "yesterday".
*
* @param date
* milliseconds since the epoch
* @return the formatted string
*/
public static String formatShortDateVerbally(long date) {
int diff = cgeo.geocaching.utils.DateUtils.daysSince(date);
switch (diff) {
case 0:
return cgeoapplication.getInstance().getString(R.string.log_today);
case 1:
return cgeoapplication.getInstance().getString(R.string.log_yesterday);
default:
return formatShortDate(date);
}
}
/**
* Generate a numeric date and time string according to system-wide settings (locale,
* date format) such as "7 sept. at 12:35".
*
* @param context
* a Context
* @param date
* milliseconds since the epoch
* @return the formatted string
*/
public static String formatShortDateTime(Context context, long date) {
return DateUtils.formatDateTime(context, date, DateUtils.FORMAT_SHOW_DATE | DateUtils.FORMAT_SHOW_TIME | DateUtils.FORMAT_ABBREV_ALL);
}
}
|