I have this function
private void setDateInTopBar() {
Date bodyPartDate = DataManager.instance().getSelectedBodyPart().getPublicationDate();
SimpleDateFormat format = new SimpleDateFormat("dd/mm/yyyy");
String formattedDate = format.format(bodyPartDate);
TextView dateTxt = (TextView) findViewById(R.id.txtImageDate);
dateTxt.setText(formattedDate);
}
but my month is 0, when day and year is working well, what’s the problem?
Replace:
With:
as
mmreferes to minutes.. check http://developer.android.com/reference/java/text/SimpleDateFormat.html