I have retrieved date from contact database and the value is 1990-04-07 that is yy-MM-dd
.
How to format the date to 07th April 1990
Please suggest me ....
I have retrieved date from contact database and the value is 1990-04-07 that is yy-MM-dd
.
How to format the date to 07th April 1990
Please suggest me ....
Check out the Android Developer page for DateFormat: Android Developer Page
What you're looking for is DateFormat.getDateTimeInstance() in the example they provide.