Here you can find the source of getRelativeDate(Date date)
public static String getRelativeDate(Date date)
//package com.java2s; //License from project: Open Source License import java.util.Date; import android.text.format.DateUtils; public class Main { public static String getRelativeDate(Date date) { return DateUtils.getRelativeTimeSpanString(date.getTime(), new Date().getTime(), DateUtils.DAY_IN_MILLIS, DateUtils.FORMAT_ABBREV_RELATIVE).toString(); }/*from w ww . j a v a2 s .co m*/ }