i want to change datetime type for example dd.MM.yyyy i parsed json and i want to change datetime format. I wrote some code and able to change datetime format but time is always same,
for example 2.3.2014 this is a my code
Calendar cal = new GregorianCalendar();
DateFormat df = new SimpleDateFormat("dd.MM.yyyy");
String date = df.format(cal.getTime());
String DateTimeTxt = itemList.get(MainActivity.KEY_pubDate);
DateTimeTxt = date;
DateTime.setText(DateTimeTxt);
what is a problem ?