How to format correctly according to the device configuration date and time when having a year, month, day, hour and minute?
Try:
event.putExtra("startTime", "10/05/2012");
And when you are accessing passed variables:
SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/yyyy"); Date date = formatter.parse(bundle.getString("startTime"));