Reputation: 6567
i am using date picker in android, when i am picking date it coming like this 10-26-2010, but i want to show date in this format October 26,2010. is it possible? please any body help.
Upvotes: 1
Views: 1819
Reputation: 13856
create an new Date
object when the values are returned and use the appropriate methods to set it to the correct date. You can then format it with SimpleDateFormat
Upvotes: 1