Mega Code Archive

 
Categories / Android / Date Type
 

DateFormat getDateTimeInstance(DateFormat SHORT, DateFormat SHORT) format(date)

import java.text.DateFormat; import java.util.Date; import android.content.Context;  class DateUtils {      public static String getDisplayDate(Context context, Date date) {     return DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT).format(date);   } }