I have stored date in database, first take the current date then convert it into String then store it into database, it is working fine.
Then I want to retrieve the data and show it to ListView, for that i did:
// get the string value of date
String dateString = c.getString(c.getColumnIndex(CallHistoryDataBase.colDate));
// formate according to system's current formate
java.text.DateFormat dateFormat = android.text.format.DateFormat.getDateFormat(getApplicationContext());
textViewDateTime.setText(dateFormat.format(new Date(dateString)));
It is working fine, like if I have stored date with "dd/MM/yyyy" formate and later I have changed the System's formate to "yyyy/MM/dd" in list it showing with "yyyy/MM/dd" formate.
But some time it displays 2014/04/14 for date 2012/04/14. I have checked, at the time of storing and retrieving data to and from database it is fine.
I don't get any clue. There is no hard code, not even 14 number is there.
Any suggestion... different solution is also acceptable.

