private String getFormatedDate(long time){
simpleDateFormat = new SimpleDateFormat("dd/MM/yyyy");
String formatedDate = simpleDateFormat.format(time);
return formatedDate;
}
private String getFormatedDate(long time){
simpleDateFormat = new SimpleDateFormat("dd/MM/yyyy");
String formatedDate = simpleDateFormat.format(time);
return formatedDate;
}