0
私は "x年前"を期待していますが、返されるのは2015年4月25日です。DateUtils.getRelativeTimeSpanString() "x年前"
relativeDateTimeString = DateUtils.getRelativeTimeSpanString(simpleDateFormat.parse(isoDate).getTime(), System.currentTimeMillis(), YEAR_IN_MILLIS);
(私の時間の値となりました)
time = 1429937303000;
now = 1492464306151;
どのように私は私の期待値を得ることができますか?
Joda-Time
をインストールしないことをお勧めします。 104 weeks ago
にWEEK_IN_MILLIS
relativeDateTimeString = DateUtils.getRelativeTimeSpanString(simpleDateFormat.parse(isoDate).getTime(), System.currentTimeMillis(), WEEK_IN_MILLIS);
結果を使用して
。
上記ドキュメントの場合:0、MINUTE_IN_MILLIS、HOUR_IN_MILLIS、DAY_IN_MILLIS、WEEK_IN_MILLISのいずれかを渡します。 – njzk2