I am using calender in my app and i want to change the format of the date.
private void updateLabel() {
String myFormat = "dd/MM/yy"; // In which you need put here
SimpleDateFormat sdf = new SimpleDateFormat(myFormat, Locale.US);
checkin_date.setText(sdf.format(myCalendar.getTime()));
}
I want this format Fri, 21 Nov 2013
How can we do this .Please help me in this