I want to remove time from Date object.
Date
DateFormat df; String date; df = new SimpleDateFormat(\"dd/MM/yyyy\"); d = eventList.get(0).getStartDate
Don't try to make it hard just follow a simple way
date is a string where your date is saved
String s2=date.substring(0,date.length()-11);
now print the value of s2. it will reduce your string length and you will get only date part.
s2