I'm using DateUtils to show the posted time. But is there a way to show:
"4 min ago" instead of "4 minutes ago"
CharSequence result = DateUtils.getRelativeTimeSpanString(timestamp, Currenttime,DateUtils.SECOND_IN_MILLIS);
I'm using DateUtils to show the posted time. But is there a way to show:
"4 min ago" instead of "4 minutes ago"
CharSequence result = DateUtils.getRelativeTimeSpanString(timestamp, Currenttime,DateUtils.SECOND_IN_MILLIS);
Copyright © 2021 Jogjafile Inc.
use
and provide as
DateUtils.FORMAT_ABBREV_RELATIVE
as flags.Accordingly to the documentation
E.g.
should do it.