在Android中使用自定义格式显示相对日期

时间:2017-02-15 15:46:05

标签: java android android-dateutils

我想将日期翻译成人类可读的格式。我使用DateUtils. getRelativeDateTimeString,但这不符合标准。我得到的输出看起来像:1小时15分钟。以前等等。

我想知道是否可以将格式更改为:

3m 而不是 3分钟。前

1h 而不是 1小时。 15分钟以前等。

使用DateUtils还是有其他方法可以做到这一点?

更准确地说,我正在寻找与此angular-filter相当的Android,您可以轻松更改相对日期的格式(例如:{{minutes}} minutes ago{{minutes}}m

为了使自己清楚,我不是在寻找一种格式化日期的方法,而是将日期翻译成人类可读的格式,例如“今天”,“1小时”,“38分钟”(simillar到facebook的相对日期) )。

4 个答案:

答案 0 :(得分:1)

经过一些研究,我发现了一些像Time4AJoda-TimePrettyTimeAndroid-Ago这样的图书馆。

但是,我决定不使用库并覆盖其文本资源,而是创建一个方法并在strings.xml中存储文本,以便将来进行本地化。

    private static final int SECOND_MILLIS = 1000;
    private static final int MINUTE_MILLIS = 60 * SECOND_MILLIS;
    private static final int HOUR_MILLIS = 60 * MINUTE_MILLIS;
    private static final int DAY_MILLIS = 24 * HOUR_MILLIS;
    private static final int WEEK_MILLIS = 7 * DAY_MILLIS;

    public static String getTimeAgo(Date date, Context context) {
        Date now = Calendar.getInstance().getTime();
        final long diff = now.getTime() - date.getTime();

        if (diff < SECOND_MILLIS) {
            return context.getString(R.string.just_now);
        } else if (diff < MINUTE_MILLIS) {
            return diff / SECOND_MILLIS + context.getString(R.string.seconds_ago);
        } else if (diff < 2 * MINUTE_MILLIS) {
            return context.getString(R.string.a_minute_ago);
        } else if (diff < 59 * MINUTE_MILLIS) {
            return diff / MINUTE_MILLIS + context.getString(R.string.minutes_ago);
        } else if (diff < 90 * MINUTE_MILLIS) {
            return context.getString(R.string.an_hour_ago);
        } else if (diff < 24 * HOUR_MILLIS) {
            return diff / HOUR_MILLIS + context.getString(R.string.hours_ago);
        } else if (diff < 48 * HOUR_MILLIS) {
            return context.getString(R.string.yesterday);
        } else if (diff < 6 * DAY_MILLIS) {
            return diff / DAY_MILLIS + context.getString(R.string.days_ago);
        } else if (diff < 11 * DAY_MILLIS) {
            return context.getString(R.string.a_week_ago);
        } else {
            return diff / WEEK_MILLIS + context.getString(R.string.weeks_ago);
        }
    }

答案 1 :(得分:-1)

使用API​​级别3中包含的内置DateUtils实用程序库。

 CharSequence getRelativeDateTimeString (Context c, 
             long time, 
             long minResolution, 
             long transitionResolution, 
             int flags) Return string describing the elapsed time since startTime formatted like "[relative time/date], [time]".

美国日期格式的示例输出字符串:

  

3分钟之前,上午10:15昨天,12月12日12:20,11/12 AM 11/14/2007,   上午8:20

答案 2 :(得分:-2)

为什么不将日期解析为您想要的格式?

使用string.replace(),您可以在一行代码中完成。

编辑1:我通常以这种方式使用SimpleDateForma,希望它有所帮助:

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); String currentDateandTime = sdf.format(new Date());

你需要这个导入(我认为Android会自动导入):

import java.text.SimpleDateFormat;
import java.util.Date;

编辑2:在您的示例中,您需要做的是:

SimpleDateFormat sdf = new SimpleDateFormat("HH'h' mm'm'"); String currentDateandTime = sdf.format(new Date()); System.out.println("Today in dd-MM-yy:HH:mm:SS : " + date);

答案 3 :(得分:-2)

您应该使用SimpleDateFormat并指定所需的模板。在你的情况下,这将是这样的:

String template = "H'h', m'm'";
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(template, Locale.getDefault());
String formatted = simpleDateFormat.format(new Date());