Show relative modified Date on ListView

This commit is contained in:
Stefan Niedermann 2015-10-22 19:01:44 +02:00
parent 5ba881c783
commit 848ccfd316

View file

@ -55,7 +55,7 @@ public class NoteAdapter extends ArrayAdapter<Note> {
noteTitle.setText(note.getTitle());
noteExcerpt.setText(note.getExcerpt());
noteModified.setText(DateUtils.getRelativeTimeSpanString(getContext(), note.getModified().getTimeInMillis()));
noteModified.setText(DateUtils.getRelativeDateTimeString(getContext(), note.getModified().getTimeInMillis(), DateUtils.MINUTE_IN_MILLIS, DateUtils.WEEK_IN_MILLIS, 0));
}
// the view must be returned to our activity